在页面中创建前进按钮

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script>
  5. function goForward() {
  6. window.history.forward()
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. <button onclick="goForward()">前进</button>
  13.  
  14. <p>单击此处的“前进”按钮不会导致任何操作,因为历史列表中没有下一个 URL。</p>
  15.  
  16. </body>
  17. </html>