Tips to turn off Web page popup:
In many sites have this feature, click Close the current page, will pop up a prompt box, you can choose to close or not close the current page, the following describes how to implement this function, code examples are as follows:
<!DOCTYPE HTML><HTML><Head><MetaCharSet= "Utf-8"><Metaname= "Author"content= "http://www.51texiao.cn/" /><title>Ant Tribe</title><Scripttype= "Text/javascript">Window.onbeforeunload=function(){ return "Are you sure you want to leave this page?"; } </Script> </Head> <Bodystyle= "Text-align:center">Close the current page will pop up a prompt box! </Body> </HTML>
The above code is implemented by clicking the Close Current page button will pop up a prompt whether to close the current button's prompt box.
The original address is: http://www.51texiao.cn/javascriptjiaocheng/2015/0405/121.html
Tips for turning off Web page Popup