使用$(window)[0].innerHeight 代替$(window).innerHeight()或$(window).height()

如下图所示,不知道为什么使用$(window).height()获取的数值与实际需要的数值不符合。

console.log($(window).height());
console.log($(window)[0].innerHeight);
console.log($(window).innerHeight());


按说这么小的窗口应该获取200+的px值。
但是不论怎么弄都是660。
使用$(window)[0].innerHeight 代替$(window).innerHeight()或$(window).height()_第1张图片

代码检查了好久也查不到问题。

使用$(window)[0].innerHeight 问题就解决了。 实在不明白。

你可能感兴趣的:(html,innerHeight)