[removed] and [removed] is not working in Firefox , Safari , Opera?

后端 未结 6 1896
心在旅途
心在旅途 2020-11-22 12:11

In my chat application I need to get confirmation from user , when my application closes.

So I used the window.onbeforeunload for confirmation alert and

6条回答
  •  遥遥无期
    2020-11-22 12:34

    I got the solution for onunload in all browsers except Opera by changing the Ajax asynchronous request into synchronous request.

    xmlhttp.open("POST","LogoutAction",false);
    

    It works well for all browsers except Opera.

提交回复
热议问题