Web History API 提供了访问 windows.history 对象的简单方法。
window.history 对象包含用户访问过的 URL(网站)。
所有浏览器都支持网络历史记录 API:
Yes | Yes | Yes | Yes | Yes |
back() 方法加载 windows.history 列表中的前一个 URL。
这与在浏览器中单击"back arrow" 相同。
<button onclick="myFunction()">Go Back</button>
<script>
function myFunction() {
window.history.back();
}
</script>
go() 方法从历史列表中加载特定的 URL:
<button onclick="myFunction()">Go Back 2 Pages</button>
<script>
function myFunction() {
window.history.go(-2);
}
</script>
Property | Description |
---|---|
length | Returns the number of URLs in the history list |
Method | Description |
---|---|
back() | Loads the previous URL in the history list |
forward() | Loads the next URL in the history list |
go() | Loads a specific URL from the history list |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!