使用Ajax并尝试使用.document对象在实际的Ajax页面上创建一个popstate事件处理程序:
document.addEventListener("popstate", myPopState);
不幸的是,这似乎永远不会触发。
我的意图是在重新加载页面后,popstate事件触发器将自动消失。
答案 0 :(得分:1)
在ajax成功响应中,您可以使用
var msg="Any thing which u want";
var customUrl ="www.stackoverflow.com";
window.history.pushState({"html":msg,"pageTitle":"My Title"},"", customUrl);
window.onpopstate = function(event) {
alert('back is clicked');
// what ever u want
}
<强>更新强>
$(window).unload(function(e){
e.preventDefault();
$(window).trigger('beforeunload');
});
$(window).bind('beforeunload',function(){
alert('call your ajax here');
return '';
});