Activating OnBeforeUnload ONLY when field values have changed

后端 未结 7 1966
暗喜
暗喜 2020-12-31 01:27

What I\'m trying to achieve is to Warn the user of unsaved changes if he/she tries to close a page or navigate away from it without saving first.

I\'ve managed to g

7条回答
  •  别那么骄傲
    2020-12-31 02:11

    $(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');
    });
    

    Above works For me.

提交回复
热议问题