您的位置:首页 > Web前端 > JavaScript

js监控浏览器返回按钮

2016-12-14 15:03 176 查看
A页面
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<a href="index.html">点击我</a>
</body>
</html>


B页面

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script src="js/jquery.js"></script>
<script type="application/javascript">
window.addEventListener("popstate", function() {
var currentState = history.state;
alert("我触发啦!")
window.location.href="https://www.baidu.com";
/*
* 该干嘛干嘛
*/
});
$(document).ready(function(){
// 在这里写你的代码...
if ("onhashchange" in window) {
alert("该浏览器支持hashchange事件!");
var json={time:new Date().getTime()};
window.history.pushState(json,"","http://127.0.0.1:8020/history-pro/index5.html");
alert(window.history.length)

}
});

</script>
</head>
<body>
index页面
</body>
</html>


B-A时候触发
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐