如何在浏览器中打开多个选项卡上的window.moveto函数?

时间:2010-09-24 06:46:51

标签: javascript vb.net

我必须为多个标签最大化我的屏幕。 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

1 个答案:

答案 0 :(得分:0)

outerWidthouterHeight属性仅适用于Firefox。

此外,可以在浏览器设置中禁用使用脚本调整窗口大小的功能,因此即使浏览器是Firefox,也不能依赖它。

大多数浏览器都支持resizeTo方法,但仍然可以应用禁用大小调整的功能。