5.history.html 415 B

123456789101112131415161718
  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. <title>Document</title>
  7. </head>
  8. <body>
  9. <h2>第五页</h2>
  10. <button class="btn">上一页</button>
  11. <script>
  12. var btn = document.querySelector(".btn");
  13. btn.onclick = function() {
  14. history.go(-1)
  15. }
  16. </script>
  17. </body>
  18. </html>