所以,这个代码用于在加载时自动最大化页面但是它在firefox更新之前正常工作,现在它在IE中正常工作但它在FF中没有做任何事情......任何建议如何修复它,或者如果你有一些工作脚本就会很棒!
<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)
这是最新更新中的新“修复”。见这里:
Bug 565541 - Web sites shouldn't be allowed to resize main window
它可以防止运行代码的网页调整窗口大小。已经有很多人抱怨这会禁用有用的功能。