今天在用原生js获取div的margin时候遇到了困难,然后记录下来,以免下次解决不了类似问题。
var box = document.querySelector("div");
console.log(getStyle(box, "marginTop"));
function getStyle(ele, attr) {
if (window.getComputedStyle) {
return window.getComputedStyle(ele, null)[attr];
} else {
return ele.currentStyle[attr];
}
}
原文:https://www.cnblogs.com/ayong6/p/12581115.html