$(window).unload is not firing

后端 未结 6 1800
失恋的感觉
失恋的感觉 2020-11-28 15:23

I want to execute an action method when the user is abandoning a particular page using jQuery.

The page has the following code:

    

        
6条回答
  •  Happy的楠姐
    2020-11-28 15:37

    Actually some browsers such as Google Chrome might block if you attempt to alert in a window unload. As a user I like this feature. Alerting everytime you try to navigate away from a page sucks:

    enter image description here

    Replace the alert with a console.log or something else less intrusive to the user and the event will be happily called.

    You might also want to checkout the onbeforeunload event.

提交回复
热议问题