当我看到这段
代码时,我想知道一点:
// 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