我无法在Firefox 7中使用javascript调整浏览器窗口的大小。到目前为止,我已经检查了所有浏览器。有谁知道为什么它不能在firefox 7中运行。
在我的示例中,我试图调整一个窗口,该窗口由于单击父窗口中的链接而打开。因此,我这里有2个文件。
index.html(父母)
主管部分
<script type="text/javascript">
function openwin() {
var win1 = window.open('index2.html','mywin','left=20,top=20,width=900,height=700,toolbar=1,resizable=0');
}
</script>
身体部分 -
<a href="javascript:openwin()">Click to open a new window</a>
index2.html(孩子)
主管部分
<script type="text/javascript">
function fullscreen() {
window.moveTo(0,0)
window.resizeTo(screen.availWidth, screen.availHeight);
}
</script>
身体部分 -
<a href="javascript:fullscreen()">Click to fullscreen a window</a>
如果有任何帮助,请告诉我。我假设FF7有一个错误。非常感谢
答案 0 :(得分:2)
目前这是Firefox 7中的一个错误。已经向mozilla报告过了。 Bug report
中提供了更多信息答案 1 :(得分:1)
在FF6中,您应该使用window.innerWidth
或window.outerWidth
以及window.innerHeight
或window.outerHeight
来设置窗口大小,如下所示:
http://www.java2s.com/Code/JavaScript/Window-Browser/SettingWindowHeightandWidthFirefox.htm