我编写了一个脚本来打开一个弹出窗口,与 Firefox 和 Internet Explorer 相比,chrome 浏览器中的窗口太小了。
这是我的脚本,
function openPopup(sId,tId)
{
window.open ("index.php?sid=" + sid+"&tid="+tid, "test", "fullscreen,scrollbars,hotkeys=no");
}
有什么帮助吗?感谢提前。
我编写了一个脚本来打开一个弹出窗口,与 Firefox 和 Internet Explorer 相比,chrome 浏览器中的窗口太小了。
这是我的脚本,
function openPopup(sId,tId)
{
window.open ("index.php?sid=" + sid+"&tid="+tid, "test", "fullscreen,scrollbars,hotkeys=no");
}
有什么帮助吗?感谢提前。
您可以在弹出窗口中使用固定width
和height
window.open('','','width=200,height=100');
您可以在调用 window.open() 时设置宽度和高度。查看这篇文章了解更多信息。
据我所知,全屏不是窗口选项的参数。尝试使用 height 和 width 属性来设置大小