Implementation Code _ javascript tips prompted before closing the js page

Source: Internet
Author: User
Mainstream browsers support onbeforeunload events (events triggered before page uninstallation). Most websites now use this function to implement it as follows:

The Code is as follows:


Window. onbeforeunload = function (){
Return "are you sure you want to leave the page? ";
}


There is also a way to write

The Code is as follows:


Window. onbeforeunload = function (event ){
(Event | window. event). returnValue = "are you sure you want to exit ";
}


This method is not supported by chrome and safari, but because of the support of ie and ff, html5 is also added to the standard...
As we all know, the events (such as alert and confirm) will be blocked in the pop-up dialog box of the browser. After further operations, the events will continue to be executed.
This is common practice.

The Code is as follows:


Window. onbeforeunload = function (event ){
Return confirm ("are you sure you want to exit ");
}


Here we will pop up two times, and the content after return will serve as a prompt for whether to leave the page ..
Related Article

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.