📅  最后修改于: 2020-10-24 05:36:49             🧑  作者: Mango
JavaScript历史记录对象表示用户访问的URL数组。通过使用此对象,您可以加载上一页,上一页或任何特定页面。
历史记录对象是window属性,因此可以通过以下方式访问它:
window.history
要么,
history
历史对象只有1个属性。
No. | Property | Description |
---|---|---|
1 | length | returns the length of the history URLs. |
历史对象只有3种方法。
No. | Method | Description |
---|---|---|
1 | forward() | loads the next page. |
2 | back() | loads the previous page. |
3 | go() | loads the given page number. |
让我们看看历史对象的不同用法。
history.back();//for previous page
history.forward();//for next page
history.go(2);//for next 2nd page
history.go(-2);//for previous 2nd page