關閉另開視窗時,不出現提示訊息

摘要:關閉另開視窗時,不出現提示訊息

關閉另開視窗時,不出現提示訊息
 

<script language="javascript" type="text/javascript">
//IE6.0:
window.opener=null;
//window.close();

//IE7.0:
void(window.open('','_parent',''));
window.close();  
</script>