JavaScript 参考手册
History forward() 方法
页面上创建一个前进按钮
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <script> function goForward() { window.history.forward() } </script> </head> <body> <input type="button" value="前进" onclick="goForward()"> <p>注意,点击这里的前进按钮不会导致任何行动,因为历史列表中没有下一个URL。</p> </body> </html>
运行结果:
点击运行 »