首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

IE6中弹出层报“Internet Explorer cannot open the Internet site “。如何避免

2012-07-31 
IE6中弹出层报“Internet Explorer cannot open the Internet site “。如何处理?.net开发,在IE8中没有问题,

IE6中弹出层报“Internet Explorer cannot open the Internet site “。如何处理?
.net开发,在IE8中没有问题,弹出层的JS写在模板页中,每个页面都有用到。
在网上查到这个错误一般是因为页面没有加载完成就调用了一个脚本程序。
那我现在要怎么处理呢。

[解决办法]

JScript code
function OpenWin() {            if (document.readyState == "complete") {                window.open(...);                return false;            }            else                setTimeout(OpenWin(),100);        } 

热点排行