调用window.close()方法时,如何屏蔽关闭窗口的提示?

设置如下:
window.top.opener  =  null;  
window.top.close();  
---------------------------------------------------------------  
 
<input  type=button  value=关闭  onclick="window.opener=null;window.close()">  

你可能感兴趣的:(调用window.close()方法时,如何屏蔽关闭窗口的提示?)