主要是监听了window的onbeforeunload事件,对一般的浏览器来说如果在这个事件监听时返回一个字符串,它就会弹出一个对话框,但有的浏览器是使用event.returnValue,你可以使用以下的兼容性代码
window.onbeforeunload = function (e) { var message = ‘some word‘; e = e || window.event; if (e) { e.returnValue = message; } return message; };
时间: 2024-11-05 22:31:50