`

浏览器关闭事件

 
阅读更多
$(document).ready(function() {

$(window).bind('beforeunload', function(e) {
e = e || window.event;
if ($.browser.mozilla) {
if (confirm('您的内容尚未保存,确定要离开本页吗?---mozilla')) {
return window.close();
} else {
return false;
}
} else {
return '您的内容尚未保存,确定要离开本页吗?---other borwer';
}
});

});
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics