back.html 594 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <style>
  7. .back-up a{
  8. text-decoration: none;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <section>
  14. <div class="container">
  15. <div class="row pt-2 pt-xl-3">
  16. <a class="back-up" href="javascript:window.history.go(-1);"
  17. style="text-decoration: none;color: rgb(137, 137, 137);">&lt;
  18. 点击返回列表</a>
  19. </div>
  20. </div>
  21. </section>
  22. </body>
  23. </html>