因此,在低于7的Firefox版本中,此脚本正在运行(它将浏览器窗口调整到最大限度的访问者监视器)。现在在FF 7 +中它似乎无法正常工作。如果你能找到它为什么不起作用,或者如果你能给我类似的话,我会非常感激!这是我的代码:
<script language="JavaScript1.2">
top.window.moveTo(0,0);
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;
}
}
</script>
答案 0 :(得分:1)
来自fine manual:
window.outerHeight属性是只读的。
同样适用于window.outerWidth
。有resizeTo
和resizeBy
,但浏览器不一定会关注您的简单请求。
浏览器窗口的大小是用户的选择,调整窗口大小有点粗鲁,所以许多浏览器都不允许你这样做。