gpt4 book ai didi

jQuery(window).height 不准确

转载 作者:行者123 更新时间:2023-12-03 22:09:18 24 4
gpt4 key购买 nike

我正在对 $(window).height() 进行简单测试,在 1366 x 768 的屏幕分辨率上得到的值为 2602。

jQuery(document).ready(function($){

var W = $(window).width();
var H = $(window).height();

console.log('W ' + W);
console.log('H ' + H);

}

输出:

W 1226 H 2602

有关如何调试此问题或我做错了什么的任何提示?

编辑:使用 chrome 和 FF

我实际上是在控制台中输入:jQuery(window).height();

最佳答案

这可能就像 DOCTYPE 丢失或不正确一样简单(Chrome 受影响,但 IE 不受影响)。

有趣的是,这甚至不是 jQuery 问题 - 它也会影响 document.documentElement.clientHeight

没有文档类型:

enter image description here

使用文档类型:

<!DOCTYPE html>

enter image description here

我以为我的页面上有布局模板,但事实证明我没有 - 因此没有 DOCTYPE。

关于jQuery(window).height 不准确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18178757/

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