Jquery中的高度

$('.someElement').height(); // returns the calculated pixel height of the element(s)

$(window).height(); // returns height of browser viewport

$(document).height(); // returns height of HTML document

原文地址:https://www.cnblogs.com/time-is-life/p/7249268.html