JS summary of several ways to close the current page (window), friends in need can refer to it
1. JS code to close the window without any prompt
The code is as follows:
<a href="javascript:window.opener=null;window.open('','_self');window.close();">关闭</a>
2. Custom prompt is closed
The code is as follows:
<script language="javascript"> // 这个脚本是 ie6和ie7 通用的脚本 function custom_close(){ if (confirm("您确定要关闭本页吗?")){ window.opener=null; window.open('','_self'); window.close(); } else{} } </script> <input id="btnClose" type="button" value="关闭本页" onClick="custom_close()" />
3. Close the current page:
<a href="javascript:window.opener=null;window.close();">关闭</a>如果是按钮则: Response.Write("<script language=\"javascript\">window.opener=null;window.close();</script>");
In this way, when you click Close, the dialog box that the current window is trying to close will not pop up.
So how do you do that? When the user clicks the close button in the maximize or minimize close button of the browser, a closing confirmation dialog box will pop up? Like this:
The code is as follows:
<body onbeforeunload="return '真的要关闭此窗口吗?'">
In this case, click close When the onbeforeunload function is executed, a dialog box pops up asking whether you really want to close this window. Click Cancel to return false, do not close, click OK to return True to close the window
So how can you click a button? What about the confirmation and cancellation dialog box that pops up? If you click Cancel, the following code will not be executed. If you click OK, it will continue to execute the following code?
Write in the button click:
The code is as follows:
Response.Write("<script language=\javascript\">" + "if(confirm(\"确定吗?\"))"+"{window.location.href='default. asp x';}"+"else{history.back();}"+"</script>");
means: first use the confirm function to pop up a dialog box with confirmation to cancel. If you click OK, it will return true and execute the window.location.href='default.aspx' code. If Click Cancel to return to false, and execute history.back(); return to the original page
Related articles:
Click the return button to close in WeChat, Alipay, and Baidu Wallet Current page and window
JS code to automatically jump or close the current page after the specified time
Open a new window and close the current page without popping up Close prompt js code