How to show the “Are you sure you want to navigate away from this page?” when changes committed?

前端 未结 17 1603
深忆病人
深忆病人 2020-11-22 02:11

Here in stackoverflow, if you started to make changes then you attempt to navigate away from the page, a javascript confirm button shows up and asks: \"Are you sure you want

17条回答
  •  误落风尘
    2020-11-22 03:05

    jquerys 'beforeunload' worked great for me

    $(window).bind('beforeunload', function(){
        if( $('input').val() !== '' ){
            return "It looks like you have input you haven't submitted."
        }
    });
    

提交回复
热议问题