其他分享
首页 > 其他分享> > 原生js获取css样式

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

标签:原生,style,getComputedStyle,ele,window,currentStyle,var,js,css
来源: https://www.cnblogs.com/ielse/p/10642862.html