1、.position()和.offset()
jquery的.position()获取相对于最近的position为relative或absolute的父元素的偏移,返回.position().left和.position().top,不算上自己的margin-left;
jquery的.offset()获取相对于视口左上角的偏移,返回.offset().left和.offset().top, 算上自己的margin-left,,还可以设置.offset({left:,top:});这个很有用,比如编写日期控件时,append到body上,然后就可以根据input的.offset()和高度设置日期控件的.offset(),最终这些值自动会被换算为position为relative(相对于body)的top和left。
jquery的.offset()与js的obj.offsetLeft和.obj.offsetTop一样,只是这个不能赋值。
2、.outerHeight()、.innerHeight()和.height()
jquery的.outerHeight()=border+padding+height,等同于js的.offsetHeight(.offsetWidth同理)
.outerHeight(true)=margin+border+padding+height
.innerHeight()=padding+height
.height()设置和获取高度
3、.scrollTop和.scrollHeight
.scrollTop:已经滚动过的高度;
.scrollHeight:整个滚动的高度,从开始到滚动结束滚动过的高度,包括滚动元素自身的高度。
用图来解释:如下图,contentContainer为父元素,content为它的子元素,由于它的高度设置得比父元素高度高,所以父元素出现了滚动条。
假设现在滑动条已划过了一段距离,
则contentContainer的scrollTop为a,scrollHeight为b。
4、监听整个网页的滚动事件:
测试ie11、chorme、firefox,发现body上不支持监听整个网页的滚动事件scroll,window上都支持:window.οnscrοll=function(){};
5、获取/设置网页已滚动的高度:
chrome | document.documentElement.scrollTop无效为0, document.body.scrollTop有效与$('body').scrollTop()+','+$(document).scrollTop()等值 |
safari与chrome表现相同 | |
ie11(包括其模拟的IE10-7) | document.documentElement.scrollTop有效与$(document).scrollTop()等值, document.body.scrollTop无效为0,$('body').scrollTop()无效为0 |
firefox | document.documentElement.scrollTop有效与$(document).scrollTop()等值, document.body.scrollTop无效为0,$('body').scrollTop()无效为0 |
所以获取网页已滚动的高度时:Math.max(document.documentElement.scrollTop,document.body.scrollTop)或$(document).scrollTop()
jquery和js的scrollTop都可以赋值。
所以如果要设置‘返回顶部’的效果应该:
$('#totop').click(function(){
document.body.scrollTop?document.body.scrollTop=0:document.documentElement.scrollTop=0;
//或$(document).scrollTop(0);
})
另外测试同一个页面,用鼠标滚轮把页面滚动到底,ie11和chrome都只触发了两次,大概是scrollTop从166到230,而firefox则触发了15次,看来ie11和chrome对触发滚动事件做了优化。可以手动添加判断两次滚动间隔超过多少px才允许运行onscroll函数:
var stop=Math.max(document.documentElement.scrollTop,document.body.scrollTop);
window.onscroll=function(){
if(Math.max(document.documentElement.scrollTop,document.body.scrollTop)-stop>100)
{//do something}
}
6、获取body视口高度:
有<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">时:
chrome | document.documentElement.clientHeight有效,window.innerHeigh有效, document.body.clientHeight无效与$('body').height()等值 |
ie11(包括其模拟的IE10-9) | document.documentElement.clientHeight有效,window.innerHeigh有效, document.body.clientHeight无效与$('body').height()等值, |
用ie11模拟ie8、ie7 | window.innerHeight为undefined,其他相同 |
firefox | document.documentElement.clientHeight有效,window.innerHeigh有效, document.body.clientHeight无效与$('body').height()等值 |
无<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">时:
chrome:document.documentElement.clientHeight无效与$('body').outerHeight(true)等值,window.innerHeigh有效,document.body.clientHeight有效,即使是有<!DOCTYPE>也是如此。
ie11:document.documentElement.clientHeight有效,document.body.clientHeight有效(ie7,8,9:无效与$('body').outerHeight(true)等值),window.innerHeigh有效,(用ie11模拟ie8、ie7时,window.innerHeight为undefined),即使是有<!DOCTYPE>也是如此。
所以在保证有完整<!DOCTYPE...声明的前提下,获取body的视口高度为:document.documentElement.clientHeight;
7、判断div的滚动条滚到底部
只要判断这个div已滚动的距离scrollTop+自己本身的高度offsetHeight>这个div的scrollHeight就表示滚动到底了。
如:一个id='contentContainer'的div里面包含一个高度查过自己 id='content'的子div。
则只要
document.getElementById('contentContainer').onscroll=function(){
if(this.scrollTop+this.offsetHeight>=this.scrollHeight){
$(this).append('bottom');
//不要用==因为很多浏览器并不是每滚动1px就触发scroll事件的
}
}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/> <title>example</title> </head> <body > <div id='show'></div><div id='contentContainer' style="margin:10px 0 0 10px;overflow:auto; padding:30px;height:300px;width:80%;border:2px solid black;"> <div id='content' style="margin:10px 0 0 10px; padding:10px;height:700px;width:80px;border:1px solid black;"></div> </div> <script type="text/javascript"> document.getElementById('contentContainer').οnscrοll=function(){ if(this.scrollTop+this.offsetHeight>=this.scrollHeight) document.getElementById('show').innerHTML=document.getElementById('show').innerHTML+'tobottom,'; } </script> </body> </html>
8、判断body的滚动条滚到底部:
获取页面的scrollHeight:document.documentElement.scrollHeight在各浏览器中表现一致。
监听页面滚动条滚到底部:
window.onscroll=function(){
var scrolltop=Math.max(document.documentElement.scrollTop,document.body.scrollTop);
if(scrolltop+document.documentElement.clientHeight>=document.documentElement.scrollHeight)
alert( 'nowbottom' );
};