2012年5月13日 星期日

關閉視窗 Javascript

Explorer 6
window.opener=self;
window.close();
Explorer 7
window.open(”",”_self”);
window.close();

方式一

<SCRIPT LANGUAGE="JavaScript">
<!--
function closeWin(){
   window.open("","_self");
   top.opener=null;
   top.close();
}
//-->
</SCRIPT>
<body onLoad="closeWin();">