JavaScript 参考手册
History go() 方法
点击返回前两个页面
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <script> function goBack() { window.history.go(-2) } </script> </head> <body> <input type="button" value="后退2页" onclick="goBack()"> <p>注意,点击“后退2页”按钮将不会导致任何行动,因为以前的历史列表中没有URL。</p> </body> </html>
运行结果:
点击运行 »