JavaScript before leaving the page

前端 未结 10 1917
谎友^
谎友^ 2020-11-22 08:01

I want to make a confirmation before user leaving the page. If he says ok then it would redirect to new page or cancel to leave. I tried to make it with onunload

<         


        
10条回答
  •  眼角桃花
    2020-11-22 08:37

    Just a bit more helpful, enable and disable

    $(window).on('beforeunload.myPluginName', false); // or use function() instead of false
    $(window).off('beforeunload.myPluginName');
    

提交回复
热议问题