Close browser pop-up dialog event onbeforeunload-http://www.blogjava.net/jennyli/articles/82351.html

Source: Internet
Author: User
When you click the close button of the browser to close the browser, you sometimes do not want it to be closed directly. In the dialog box that appears, you need to use the event onbeforeunload. The usage is as follows:
<Script language = "JavaScript">
<! --
Function opcheckunload (){
If (g_blncheckunload ){
Try {
Window. event. returnvalue = "if close the window, the auto task will complete with document No update version ";
} Catch (e ){}
}
}
-->
</SCRIPT>

<Body onbeforeunload = "opcheckunload ();">
</Body>

However, this usage does not support Firefox, because Firefox does not support window. event, so I changed the method and applied it as follows:
Window. onbeforeunload = function (){
If (g_blncheckunload ){
Return ("if close the window, the auto task will complete with document No update version! ");
}
}

The pop-up dialog box is as follows:

But there is a problem, which has not been solved yet. I use a Chinese version of the browser, but my system is in the English version. The language displayed in the window popped up by this event is in the browser, there is no way to set it in JavaScript.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.