当前位置: 代码迷 >> ASP.NET >> IE6中弹出层报“Internet Explorer cannot open the Internet site “。如何避免
  详细解决方案

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

热度:1751   发布时间:2013-02-25 00:00:00.0
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);        }
  相关解决方案