Window.close Close window prompts usage detail

Source: Internet
Author: User
Tags close close xmlns

When you use Window.close to close an open window, a prompt window pops up, and a window that is open by using window.open () does not. But using
window.open ("About:blank", "_self"). Close ()

Avoid the problem.

Similarly

The code is as follows Copy Code

Window.parent.close ()

And

Window.top.close ()

can be written

window.open ("About:blank", "_parent"). Close ()
And

window.open ("About:blank", "_top"). Close ()

So to avoid this problem.

It's also easy to eliminate this cue box in your program, but in IE6 and IE7 slightly different

1. IE6

  code is as follows copy code
<title>IE6Close</title>
<script type= "Text/javascript" >
function Closewin ()
{
Window.opener=null;
Window.close ();
}
</script>
<body>
<form id= "Form2" runat= "Server" >
<div>
<input id= "btnclose" type= "button" value= "Close" onclick= "Closewin ()"/>
</div>
</form>
</body>

2.ie7

  code is as follows copy code
    <title> Ie7colse</title>
    <script type= "text/javascript"
    function Closewin ()
    {
        window.open (', ' _self ', ');
        Window.close ();
   }
    </script>
<body>
    <form id= "Form2" runat= "Server"
    <div>
        <input id= " Btnclose "type=" button "value=" Close "onclick=" Closewin () "/>
    </div>
     </FORM>
</body>
Related Article

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.