原生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/

posted @ 2019-04-02 15:26  瞎几把乱记  阅读(1001)  评论(0编辑  收藏  举报