javascript – JS“窗口”宽度 – 高度与“屏幕”宽度 – 高度?

前端之家收集整理的这篇文章主要介绍了javascript – JS“窗口”宽度 – 高度与“屏幕”宽度 – 高度?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我看到这段代码时,我想知道一点:
// Get the screen height and width
var maskHeight = $(document).height();
var maskWidth = $(window).width();

...

// Get the window height and width
var winH = $(window).height();
var winW = $(window).width();

$(document).height();有什么区别?和$(窗口).height();?

解决方法

$(document).height是视口的内部区域,主要是从工具栏/ url栏的底部到状态栏/底部滚动条/窗口底部. $(window).height获取窗口的整个高度,包括地址栏和滚动条等内容.
原文链接:https://www.f2er.com/js/155778.html

猜你在找的JavaScript相关文章