码迷,mamicode.com
首页 > Windows程序 > 详细

$(document).height 与$(window).height的区别

时间:2017-08-26 11:24:52      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:滚动条   注意   scrolltop   页面   可见   window   document   ==   jquer   

$(document).scrollTop() 获取垂直滚动的距离 (即当前滚动的地方的窗口顶端到整个页面顶端的距离)
$(document).scrollLeft() 这是获取水平滚动条的距离

 

要获取顶端 只需要获取到scrollTop()==0的时候 就是顶端了

要获取底端 只要获取scrollTop()>=$(document).height()-$(window).height()
就可以知道已经滚动到底端了

 

注意:$(window).height()  和  $(document).height()的区别

jQuery(window).height()代表了当前可见区域的大小,
jQuery(document).height()则代表了整个文档的高度,可视具体情况使用.

注意:当浏览器窗口大小改变时(如最大化或拉大窗口后) ,
jQuery(window).height() 随之改变,但是
jQuery(document).height()是不变的。

$(document).height 与$(window).height的区别

标签:滚动条   注意   scrolltop   页面   可见   window   document   ==   jquer   

原文地址:http://www.cnblogs.com/shouzi/p/7434716.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!