0

我编写了一个脚本来打开一个弹出窗口,与 Firefox 和 Internet Explorer 相比,chrome 浏览器中的窗口太小了。

这是我的脚本,

function openPopup(sId,tId)
{
    window.open ("index.php?sid=" + sid+"&tid="+tid, "test", "fullscreen,scrollbars,hotkeys=no");
}

有什么帮助吗?感谢提前。

4

3 回答 3

1

您可以在弹出窗口中使用固定widthheight

window.open('','','width=200,height=100');
于 2013-02-28T10:40:32.130 回答
0

您可以在调用 window.open() 时设置宽度和高度。查看这篇文章了解更多信息。

于 2013-02-28T10:42:16.673 回答
0

据我所知,全屏不是窗口选项的参数。尝试使用 height 和 width 属性来设置大小

于 2013-02-28T10:42:28.367 回答