使用javascript如何获取页面滚动条呢?
(1)获取页面滚动条
// Cross browser gets the position of scroll com.whuang.hsj.getScroll=function(){ return { top:document.documentElement.scrollTop || document.body.scrollTop, left:document.documentElement.scrollLeft || document.body.scrollLeft, height:document.documentElement.scrollHeight ||document.body.scrollHeight } }
?
(2)获取iframe滚动条
/*** * get iframe window‘scroll */ com.whuang.hsj.getIframeScroll=function(iframeObj){ var document22=iframeObj.contentWindow.document; return { top:document22.documentElement.scrollTop || document22.body.scrollTop, left:document22.documentElement.scrollLeft || document22.body.scrollLeft, height:document22.documentElement.scrollHeight || document22.body.scrollHeight, width:document22.documentElement.scrollWidth || document22.body.scrollWidth } }
?
(3)获取div滚动条
/*** * Get scroll of div * @param divObj * @returns {{scrollHeight: (*|number), scrollWidth: (*|number)}} */ com.whuang.hsj.getDivScroll=function(divObj){ if(typeof divObj == ‘string‘){ divObj=com.whuang.hsj.$$id(divObj); } return { scrollHeight:divObj.scrollHeight, scrollWidth:divObj.scrollWidth } }
?
(4)获取div的位置
/*** * Get the Coordinate/Location of div * @param divObj * @returns {{width: number, height: number, left: *, top: Window}} */ com.whuang.hsj.divCoordinate=function(divObj){ if(typeof divObj == ‘string‘){ divObj=com.whuang.hsj.$$id(‘divObj‘); } return {‘width‘:divObj.offsetWidth,‘height‘:divObj.offsetHeight, ‘x‘:divObj.offsetLeft,‘y‘:divObj.offsetTop, ‘scrollLeft‘:com.whuang.hsj.getScroll().left,‘scrollTop‘:com.whuang.hsj.getScroll().top}; }
?
http://blogread.cn/it/article/7304?f=hot1
?
原文:http://hw1287789687.iteye.com/blog/2182976