在页面中创建后退按钮

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