原生js获取css样式

var ele = document.getElementById("eleid");
1:ele.style.元素名称

2:var style = window.getComputedStyle ? window.getComputedStyle(ele, null) : ele.currentStyle;   style.元素名称;

window.getComputedStyle   IE早期版本不兼容,第二个参数可以获取伪类
currentStyle    IE写法

以上两个比较常用。下面链接比较全面
https://www.zhangxinxu.com/wordpress/2012/05/getcomputedstyle-js-getpropertyvalue-currentstyle/

上一篇:兼容浏览器获取元素属性的方法


下一篇:JavaScript 字符串拼接 & setInterval()实现简单动画