IE上的window.open错误?

时间:2012-11-19 15:13:36

标签: javascript

我在使用javascript的window.open的Internet Explorer中看到“无效的参数”。我该如何解决?

我在“var newwindow = window.open”中收到“无效参数”(url,'Popup Demo','toolbar = no,location = no,directories = no,status = no,menubar = no,scrollbars = no,resizable = no,copyhistory = no,width ='+ w +',height ='+ h +',top ='+ top +',left ='+ left);“。

这是我的代码:

<script type="text/javascript" language="javascript">
<!--

function popitup(url) {

    var w = 500;
    var h = 500;

    var left = (screen.width/2)-(w/2);
    var top = (screen.height/2)-(h/2);

    var newwindow = window.open (url, 'Popup Demo', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);

    if (window.focus) {
        newwindow.focus();
    }
    return false;
}

// -->
</script>

3 个答案:

答案 0 :(得分:6)

窗口名称在IE中可能没有空格。将'Popup Demo'更改为'PopupDemo'

答案 1 :(得分:1)

根据https://developer.mozilla.org/en-US/docs/DOM/window.open,第二个参数strWindowName不应包含任何空格。既然你的确如此,那可能就是问题所在。

答案 2 :(得分:0)

我发现了另一种情况,即IE和Edge在与子窗口交互期间显示“无效参数”错误。尝试将在父窗口文档中创建的元素插入到子窗口文档时发生。所有其他浏览器都可以正常工作。