如果用户试图离开包含未保存设置的页面,我希望显示警告,但如果他们试图保存这些设置,显然不会。
我想我的理解是错误的,因为我认为以下内容应该有效,但事实并非如此。有人可以告诉我我做错了什么吗?谢谢。
$('input[name="Submit"]').off('onbeforeunload');
window.onbeforeunload = function closeEditorWarning(){
/** Check to see if the settings warning is displayed */
if($('#unsaved-settings').css('display') !== 'none'){
bol_option_changed = true;
}
/** Display a warning if the user is trying to leave the page with unsaved settings */
if(bol_option_changed === true){
return '';
}
};