Cancel onbeforeunload event handler?

前端 未结 4 856
孤独总比滥情好
孤独总比滥情好 2021-01-07 18:41

I have an onbeforeunload event handler attached to the page which executes every time the page reloads / gets redirected.

window.onbeforeunload = function()          


        
4条回答
  •  心在旅途
    2021-01-07 18:55

    Not immediately related to this question, but may help someone nevertheless. This is what I use in Angular 1.x and TypeScript:

    this.$window.onbeforeunload = () => undefined;
    

提交回复
热议问题