简单教程
提交运行
代码编辑器:
<script> function goBack(){ window.history.go(-2) } </script> <input type="button" value="后退2页" onclick="goBack()"> <p>注意,点击“后退2页”按钮将不会导致任何行动,因为以前的历史列表中没有 URL</p>
运行结果: