JS Close browser window and check browser shutdown event

Source: Internet
Author: User

JS Close the browser window, do not pop up the prompt box. Support ie6+, Firefox, Google and other browsers, below an example for everyone to introduce the specific implementation method, interested friends can refer to the next JS Close browser window

JS Close the browser window, do not pop up the prompt box. Support ie6+, Firefox, Google and other browsers.

<body>
<script type= "Text/javascript" >
function Closewin () {
Window.opener=null;
window.open (', ' _self ', ');
Window.close ();
}
</script>
<a onclick= "Closewin ()" href= "#" >logout</a>
</body>
Firefox does not support JS to close the browser window by default, you can change dom.allow_scripts_to_close_windows to true in About:config.

JS Check browser Shutdown Event

JS Check the browser to close or refresh the event, the active popup prompt box. Support ie6+, Firefox, Google and other browsers.

<body>
<script type= "Text/javascript" >
Window.onbeforeunload = function () {
Return "quit?";
}
</script>
</body>

JS Close browser window and check browser shutdown event

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.