JavaScript to determine whether the browser is closed or refreshed, actually feel that there is no practical, even as a reference to JS learning document it.
<! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 transitional//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "> <html xmlns= "http://www.w3.org/1999/xhtml" > <head> <title>js Intelligent Judgment Browser is closed or refreshed </title> <meta http-equiv= "Content-type" content= "text/html;charset=gb2312" > </head> <body> Close or refresh the browser try! <script language= "JavaScript" > Window.onbeforeunload=function () { var n=window.event.screenx-window.screenleft; var b=n>document.documentelement.scrollwidth-20; if (b&&window.event.clienty<0| | Window.event.altKey) { Alert ("Off"); }else{ Alert ("Refresh"); } } </script> </body> </html>
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.