window.history指向History对象,它表示当前窗口的浏览历史。
History对象保存了当前窗口访问过的所有页面网址。
1 history.back()//后退到前一个网址
等同于
history.go(-1)
方法:
1 history.back()2 history.forward()3 history.go()
history.go(0)//刷新当前页面
window.history.pushState(state,title,url)
向历史中添加一条记录
本文共 242 字,大约阅读时间需要 1 分钟。
window.history指向History对象,它表示当前窗口的浏览历史。
History对象保存了当前窗口访问过的所有页面网址。
1 history.back()//后退到前一个网址
等同于
history.go(-1)
方法:
1 history.back()2 history.forward()3 history.go()
history.go(0)//刷新当前页面
window.history.pushState(state,title,url)
向历史中添加一条记录
转载地址:http://wtoja.baihongyu.com/