我必须为多个标签最大化我的屏幕。 window.moveto
无效。
我正在使用此代码:
if(document.all)
{
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById)
{
if(top.window.outerHeight < screen.availHeight ||
top.window.outerWidth < screen.availWidth)
{
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
请帮帮我。 问候 的Pankaj
答案 0 :(得分:0)
outerWidth
和outerHeight
属性仅适用于Firefox。
此外,可以在浏览器设置中禁用使用脚本调整窗口大小的功能,因此即使浏览器是Firefox,也不能依赖它。
大多数浏览器都支持resizeTo
方法,但仍然可以应用禁用大小调整的功能。