基本上,我在公司内部网站上使用此代码,我们要确保如果用户填写表格而他们不小心单击了指向其他页面的链接,那么他们不会丢失他们的信息的形式。我已经尝试过在JavaScript中使用window.onbeforeunload并没有运气,所以我转到了jquery:
我尝试使用window.onbeforeunload,似乎没有做任何事情。 jQuery中的绑定前卸载相同的东西:
jQuery($(window).bind('beforeunload', function(){
confirm('Are you sure you want to leave? Any information in "Notify" will be lost.');
}));
答案 0 :(得分:2)
您没有正确使用beforeunload
:
window.addEventListener('beforeunload', function (e) {
// Cancel the event
e.preventDefault();
// Chrome requires returnValue to be set
e.returnValue = '';
});
<a href="https://example.com">Leave</a>