ps:是获取样式,不是设置样式。若没有给元素设置样式值,则返回浏览器给予的默认值。(论坛整理)
1、element.style:只能获取写在元素标签中的style属性里的样式值,无法获取到定义在<style></style>和通过<link href=”css.css”>加载进来的样式属性
var ele = document.getElementById('ele'); ele.style.color; //获取颜色
2、window.getComputedStyle():可以获取当前元素所有最终使用的CSS属性值。
window.getComputedStyle("元素", "伪类");
var ele = document.getElementById('ele'); var styles = window.getComputedStyle(ele,null); styles.color; //获取颜色
3、element.currentStyle:IE 专用,返回的是元素当前应用的最终CSS属性值(包括外链CSS文件,页面中嵌入的<style>属性等)。
var ele = document.getElementById('ele'); var styles = ele.currentStyle; styles.color;
4、getPropertyValue():获取CSS样式的直接属性名称
var ele = document.getElementById('ele'); window.getComputedStyle(ele,null).getPropertyValue('color');
5、getAttribute():与getPropertyValue类似,有一点的差异是属性名驼峰格式
var test = document.getElementById('test'); window.getComputedStyle(test, null).getPropertyValue("backgroundColor");
下面的获取样式方法兼容IE、chrome、FireFox等
function getStyle(ele) { var style = null; if(window.getComputedStyle) { style = window.getComputedStyle(ele, null); }else{ style = ele.currentStyle; } return style; }