源代码 :
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>开源教程(ossoft.cn)</title> <script> function goBack(){ window.history.go(-2) } </script> </head> <body> <input type="button" value="后退2页" onclick="goBack()"> <p>注意,点击“后退2页”按钮将不会导致任何行动,因为以前的历史列表中没有URL。</p> </body> </html>
运行结果