jquery获取高度

获取览器显示区域的高度 : $(window).height();

获取浏览器显示区域的宽度 :$(window).width();

获取页面的文档高度 :$(document).height();

获取页面的文档宽度 :$(document).width();

获取滚动条到顶部的垂直高度 :$(document).scrollTop();

获取滚动条到左边的垂直宽度 :$(document).scrollLeft();

jQuery的offset()的offset().top或offset().left很方便地取得元素相对于整个页面的偏移。

$("div").offset().top//是标签距离顶部高度

$(document).scrollTop();//是滚动条高度

$(document).get(0).scrollHeight();//是滚动内容的高度

$("div").height();//是标签高度

判断元素到窗口底部的距离 $("div").height()+[$("div").offset().top-$(document).scrollTop()]=$(window).height();

你可能感兴趣的:(jquery获取高度)