使用 history.back
<input type="button" value="返回!" onclick="history.back()">
结果看起来像下面的按钮。如果单击它,您将返回到历史记录中的上一页。
使用 history.go
history.go() 方法告诉浏览器转到用户浏览历史中的特定页面。您可以通过在括号内放置一个数字来指定哪个历史记录项。对于计算机编程,这称为参数。
<input type="button" value="不,真的,回去吧!" onclick="history.go(-1)">