js 监听浏览器页面关闭事件

方法:

window.onbeforeunload = function() {

//功能函数

}

如果想阻止关闭,给一个确认弹窗:

window.onbeforeunload = function(e) {
	var e = window.event ||e;
	e.returnValue="确认关闭页面吗?";
}

不过returnValue给的字符是没有用的,浏览器始终都只会返回固定的提示,如下:

猜你喜欢

转载自blog.csdn.net/qq_42740797/article/details/124962823