码迷,mamicode.com
首页 > 其他好文 > 详细

那些宽高

时间:2015-01-06 22:57:47      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

所有元素产生偏移一的参照物是文档(浏览器的左上角)

会产生偏移量的属性:标准流(就是盒子上下排列),float,margin,position的absolute或rellative

定位是在margin外面开始定位的

offsetLeft/offsetTop          左偏移和上偏移

offsetHeight/offsetWidth   内容的宽/高+padding+border

clientWidth/clientHeight     可见内容的宽/高+padding

scrollTop/scrollleft            上卷去的内容/左卷曲的内容

scrollWidth/scrollHeight      内容的实际宽/高

 

jq里的:

$(oDiv).width();//内容的宽

$(oDiv).innerWidth();//clientWidth

$(oDiv).outerWidth();//不加双边距的offsetWidth;

$(oDiv).outerWidth(true);//双边距+offsetWidth;

 

offsetLeft=绝对定位的值+margin(记得margin的值初始化)

经常会把需要把offsetLeft转化为绝对定位。记得margin的值初始化

 

 

/*********把offsetLeft转化为绝对定位**********/

oDiv.style.left=oDiv.offsetLeft+"px";

oDiv.style.margin=0;

oDiv.style.position="absolue"

 

 

offsetParent就是产生偏移的参照物,在默认的文档流下,所有的元素的offsetParent是文档(document页面){body代理},

当这个元素的祖先元素写了绝对定位,则以这个祖先元素为offsetParent

/*************得到偏移量的方法****************/

function offset(ele){
var l=ele.offsetLft;
var t=ele.offseTop
var offSetParent=ele.offsetParent;
while(offSetParent){
l+=offSetParent.offsetLeft;
t+=offSetParent.offsetTop;
offSetParent=offSetParent.offsetParent;
}
return {left:l,top:t}
}

 

ie7下currentStyle不规范,是因为他们采取的是浏览器给的默认值,解决方法:把这些标签需要计算的默认值初始化

/*************获得样式第一种************/
function getCss(ele,attr){
if(typeof getComputedStyle=="function"){
return getComputedStyle(ele,null)[attr]
}else{
return ele.currentStyle[attr];
}
}


/*************第二种方法*****************/
function getCss(ele,attr){
try{
return getComputedStyle(ele,null)[attr]
} catch(e){
return ele.currentStyle[attr];
}
}

////////////////////第三种获得样式/////////////////////
function getCss(ele,attr){
if(window getComputedStyle){//window,因为这个变量在ie6/7/8里没有,一个变量如果未定义,不能直接操作(读),但是,一个变量没有声明,可以用typeof去判断,如果是属性没有读限制
return getComputedStyle(ele,null)[attr]
}else{
return ele.currentStyle[attr];
}
}

那些宽高

标签:

原文地址:http://www.cnblogs.com/into/p/4207111.html

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