gpt4 book ai didi

javascript - 浏览器的屏幕分辨率?

转载 作者:行者123 更新时间:2023-11-29 16:23:20 26 4
gpt4 key购买 nike

我有:

window.addEventListener('resize',doSomething,false);
function doSomething() {
var yres = document.body.offsetHeight;
var xres = document.body.offsetWidth;
alert(xres+'x'+yres);
}

此函数显示我在 google chrome my (1350x651)、firefox (1509x20) 和 internet explorer(无)中的 body 分辨率。为什么不同浏览器的分辨率不一样?

谢谢。

最佳答案

使用 jQuery 很简单,做类似的事情:

$(window).width();
$(document).width();
$(window).height();
$(document).height();

如果没有 js,这应该足够了:

screen.height;
screen.width;

在你的情况下,我猜你会使用窗口,因为那是你添加监听器的地方。另外,http://www.javascripter.net/faq/browserw.htm可以帮助编写一些更简单的代码,因为 offsetWidth 和 Height 似乎是 IE 的东西。

关于javascript - 浏览器的屏幕分辨率?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8692872/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com