收藏一个关闭浏览器窗口兼容各浏览器的段子

特别是重要的东西需要保存的时候,各浏览器都适合用哦:

window.isCloseHint = true;
//初始化关闭
window.addEventListener("beforeunload", function(e) {
if (window.isCloseHint) {
    var confirmationMessage = "要记得保存!你确定要离开我吗?";
    (e || window.event).returnValue = confirmationMessage; // 兼容 Gecko + IE
    return confirmationMessage; // 兼容 Gecko + Webkit, Safari, Chrome
}

猜你喜欢

转载自jackyrong.iteye.com/blog/2371206