JS Close the window and JS close the page of several methods summary

Source: Internet
Author: User

  This article if JS Close the window and JS close the page of several methods to summarize the introduction, the need for friends can come to the reference, I hope to help you.

The first type: JS timed auto Close window <script language= "JavaScript" > <!--function Closewin () {self.opener=null; Self.close ();} func tion clock () {i=i-1 document.title= "This window will automatically close after" + i + "seconds!"; if (i>0) settimeout ("clock ();", 1000); else Closewin ();} var i=10 clock (); --> </script>    Second: Click on the link without prompting JS close window <a href= "Javascript:window.close ()" > Close window </a> & nbsp The third Type: window does not prompt automatic shutdown JS code <script language=javascript>   <!--  This.window.opener = null;   Window.close ();  //-->   </script>     ie6-7 JS Close window Not prompt method   method One: JS code function Closewin ()//This does not prompt to close Browser     {    window.opener=null    //window.opener=top     window.open ("", "_se LF ");     Window.close ();    }       method two: Open.html JS code function open_complex_self () {      var obj_wind ow = window.open (' close.html ', ' _self ');       Obj_window.opener = window;      Obj_window.focus ();     &nbsp       close.html JS code window.close ();      Attach://normal with prompt close function Closeie () {window.close ();}//Close IE6 does not prompt function Closeie6 () {Window.opener=nul L Window.close (); ///Close IE7 does not prompt function Closeie7 () {window.open (', ' _top '); Window.top.close ();}    

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.