摘要:
/** * 使用offsetLeft,需注意margin的使用 * offsetLeft = margin-left + left; * offsetWidth= padding + border + width; * * @author Lonve */function getStyle(elem,attr){ var result = null; result = elem.currentStyle?elem.currentStyle[attr]:getComputedStyle(elem,false)[attr]; if(attr=="opacity"){ ... 阅读全文
posted @ 2013-07-31 00:14 枫雨 阅读(2390) 评论(0) 推荐(0) 编辑