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 ();   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 ();}