Chrome浏览器中,onunload事件触发后,alert()和confirm()等对话框不允许再弹出,直接用return返回内容就好了
onunload换成onbeforeunload 使用
window.onbeforeunload = han; function han() { return "您确定要离开吗?"; }
原文地址:https://www.cnblogs.com/caimengting/p/11865679.html
时间: 2024-10-10 02:56:12