HTML DOM PopStateEvent 对象
HTML DOM popStateEvent 对象是 popstate 事件的事件处理程序,该事件在窗口历史记录发生更改时触发。
PopStateEvent 属性
属性 | 说明 |
---|---|
state | 返回一个表示历史记录副本的对象。 |
示例
我们来看看 HTML DOM popStateEvent 对象的示例 −
<!DOCTYPE html> <html> <head> <style> html{ height:100%; } body{ text-align:center; color:#fff; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) center/cover no-repeat; height:100%; } p{ font-size:1.2rem; } .btn{ background:#0197F6; border:none; height:2rem; border-radius:2px; width:35%; margin:2rem auto; display:block; color:#fff; outline:none; cursor:pointer; } </style> </head> <body> <h1>DOM PopStateEvent Event Demo</h1> <button onclick="display()" class="btn">Click Me</button> <script> function display(){ window.onpopstate = function(event) { alert("location: " + document.location + ", state: " + JSON.stringify(event.state)); }; history.pushState({ page: 1 }, "title home", "?page=home"); history.pushState({ page: 2 }, "title about", "?page=about"); history.replaceState({ page: 3 }, "title contact", "?page=contact"); history.back(); history.back(); } </script> </body> </html>
输出
将生成以下输出 −
点击“单击我”按钮来了解 PopStateEvent 对象如何工作 −
点击“确认” −
广告