【笔记】onpopstate事件
Aug 27, 2018笔记jswebApionpopstate事件
window.onpopstate是popstate事件在window对象上的事件处理程序.
1 定义
每当处于激活状态的历史记录条目发生变化时,popstate事件就会在对应window对象上触发。
如果当前处于激活状态的历史记录条目是由history.pushState()方法创建,或者由history.replaceState()方法修改过的,则popstate事件对象的state属性包含了这个历史记录条目的state对象的一个拷贝。
调用history.pushState()或者history.replaceState()不会触发popstate事件。popstate事件只会在浏览器某些行为下触发,比如点击后退、前进按钮(或者在JavaScript中调用history.back()、history.forward()、history.go()方法)。
当网页加载时,各浏览器对popstate事件是否触发有不同的表现,Chrome和Safari会触发popstate事件,而Firefox不会。
2 兼容
IE10+、android4.1+,其他兼容。
3 使用
1 | window.onpopstate = function () { |
Author
My name is Micheal Wayne and this is my blog.
I am a front-end software engineer.
Contact: michealwayne@163.com