// Get the screen height and widthvar maskHeight = $(document).height();var maskWidth = $(window).width(); ... // Get the window height and widthvar winH = $(window).height();var winW = $(window).width();
$(document).height();有什么区别?和$(窗口).height();?