window.onpopstate
window.onpopstate是popstate事件在window对象上的事件句柄.
每当处于激活状态的历史记录条目发生变化时,popstate事件就会在对应window对象上触发. 如果当前处于激活状态的历史记录条目是由history.pushState()方法创建,或者由history.replaceState()方法修改过的, 则popstate事件对象的state属性包含了这个历史记录条目的state对象的一个拷贝.
调用history.pushState()或者history.replaceState()不会触发popstate事件. popstate事件只会在其他浏览器操作时触发, 比如点击后退按钮(或者在JavaScript中调用history.back()方法).
当网页加载时,各浏览器对popstate事件是否触发有不同的表现,Chrome 和 Safari会触发popstate事件, 而Firefox不会.
语法
01 |
window.onpopstate = funcRef; |
popstate事件
假如当前网页地址为http://example.com/example.html,则运行下述代码后:
01 |
window.onpopstate = function (event) { |
02 |
alert( "location: " + document.location + ", state: " + JSON.stringify(event.state)); |
05 |
history.pushState({page: 1}, "title 1" , "?page=1" ); |
06 |
history.pushState({page: 2}, "title 2" , "?page=2" ); |
08 |
history.replaceState({page: 3}, "title 3" , "?page=3" ); |
即便进入了那些非pushState和replaceState方法作用过的(比如http://example.com/example.html)没有state对象关联的那些网页, popstate事件也仍然会被触发.