gpt4 book ai didi

javascript - 页面中的条件 onbeforeunload 事件

转载 作者:数据小太阳 更新时间:2023-10-29 03:50:42 26 4
gpt4 key购买 nike

window.onbeforeunload = function(evt) {
var message = 'Are you sure you want to leave the page. All data will be lost!';

if (typeof evt === 'undefined') {
evt = window.event;
}
if (evt && !($("#a_exit").click)) {
evt.returnValue = message;
}
return message;
};

我希望用户离开页面时只点击链接(具有 id ="a_exit")。在其他情况下,如刷新页面,点击另一个链接,将提示用户是否要离开页面。我试过使用上面的代码。当我点击退出链接时,它仍然询问我是否要离开。

最佳答案

$(window).bind('beforeunload',function() {
return "'Are you sure you want to leave the page. All data will be lost!";
});

$('#a_exit').live('click',function() {
$(window).unbind('beforeunload');
});

以上对我有用

关于javascript - 页面中的条件 onbeforeunload 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20095079/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com