首页 > 编程语言 > 详细

【读书笔记】 通过原生javascript获取margin

时间:2015-07-30 16:34:02      阅读:172      评论:0      收藏:0      [点我收藏+]

 

The properties on the style object are only the styles applied directly to the element (e.g., via a style attribute or in code). So .style.marginTop will only have something in it if you have something specifically assigned to that element (not assigned via a style sheet, etc.).

To get the current calculated style of the object, you use either the currentStyle property (Microsoft) or the getComputedStyle function (pretty much everyone else).

Example:

var p = document.getElementById("target");
var style = p.currentStyle || window.getComputedStyle(p);

display("Current marginTop: " + style.marginTop);

Fair warning: What you get back may not be in pixels. For instance, if I run the above on a pelement in IE9, I get back "1em".

【读书笔记】 通过原生javascript获取margin

原文:http://www.cnblogs.com/dhuhank/p/4689331.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!