屏蔽IE弹出"您查看的网页正在试图关闭窗口,是否关闭此窗口"的方法

在IE6中范例代码如下:
window.opener= null;
window.close();

在IE7中示例代码如下:

window.opener= null;
window.open("","_self"); 
window.close();

关闭浏览器报错:

—— Scripts may close only the windows that were opened by it.

关闭当前页面js

open(location, '_self').close();

关闭 _open('bjsjwh.do?method=AddJyxm','新增检验项目',500,600) 新打开的弹窗式页面;

parent.parent.__MY_PAGE["Parent"].doQuery();
parent.parent.__selfClose(false);

 

你可能感兴趣的:(自我学习见证)