我想在浏览器标签页关闭时显示确认框和自定义消息。用户可以单击“确定”以实际关闭选项卡,然后单击“取消”以保留在页面上。
以下是我的代码。有人可以告诉我如何让它发挥作用吗?
window.onbeforeunload = function (e) {
e = e || window.event;
// For IE and Firefox prior to version 4
if (e) {
e.returnValue = 'ARE you sure?';
}
// For Safari
return 'ARE you sure?';
};
答案 0 :(得分:2)
试试这个
window.onbeforeunload = function (e) {
e = e || window.event;
// For IE and Firefox prior to version 4
if (e) {
e.returnValue = 'Sure?';
}
// For Safari
return 'Sure?';
};