Javascript 或 jQuery 自动调整大小脚本

发布于 2024-12-10 10:17:15 字数 587 浏览 2 评论 0原文

因此,在低于 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>

So in Firefox versions lower than 7 this script was working (it is auroresizing the browser window to maximum of visitors monitor). Now in FF 7 + it seems that it is not working. If you can find out why it is not working, or if you can give me similar one i will be fery very thankful! Here is my code:

<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>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

在你怀里撒娇 2024-12-17 10:17:15

来自精细手册

window.outerHeight 属性是只读的。

window.outerWidth 也是如此。有 resizeToresizeBy 但浏览器不一定会关注你的请求。

浏览器窗口的大小是用户的选择,调整窗口大小有点粗鲁,因此许多浏览器不允许您这样做。

From the fine manual:

The window.outerHeight property is read-only.

The same holds for window.outerWidth. There is resizeTo and resizeBy but the browser won't necessarily pay attention to your humble request.

The size of the browser window is the user's choice and resizing their window is a bit rude so many browsers won't let you do it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文