Eliminate the IE pop-up prompt when the close button is disabled

Source: Internet
Author: User

Window. close () is used to close the current window. run window in the open window. close () will close the window smoothly, but if it is in a non-window. run window in the open window. close (), a prompt window will pop up, as shown below:

 

 

ToProgramIt is also very easy to eliminate this prompt box, but it is slightly different in IE6 and IE7

 

1. IE6

 

<HTML xmlns = "http://www.w3.org/1999/xhtml">
<Head runat = "server">
<Title> ie6close </title>
<SCRIPT type = "text/JavaScript">
Function closewin ()
{
Window. Opener = NULL;
Window. Close ();
}
</SCRIPT>
</Head>
<Body>
<Form ID = "form1" runat = "server">
<Div>
<Input id = "btnclose" type = "button" value = "close" onclick = "closewin ()"/>
</Div>
</Form>
</Body>
</Html>

 

2. IE7

 

<HTML xmlns = "http://www.w3.org/1999/xhtml">
<Head runat = "server">
<Title> ie7colse </title>
<SCRIPT type = "text/JavaScript">
Function closewin ()
{
Window. Open ('', '_ Self ','');
Window. Close ();
}
</SCRIPT>
</Head>
<Body>
<Form ID = "form1" runat = "server">
<Div>
<Input id = "btnclose" type = "button" value = "close" onclick = "closewin ()"/>
</Div>
</Form>
</Body>
</Html>

This article from the csdn blog, reproduced please indicate the source: http://blog.csdn.net/jame_peng/archive/2009/01/21/3846912.aspx

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.