我们来翻翻元素样式的族谱-getComputedStyle

发表于:January 30, 2017 at 11:43 AM

大家应该非常熟悉 jQuery 的 css()方法,那么如何在不引用 jQuery 的情况下同样实现这个功能呢?本文就介绍使用原生 JS 来获取样式的方法.

作者:Icarus 原文链接:我们来翻翻元素样式的族谱-getComputedStyle

getComputedStyle 是什么


>The Window.getComputedStyle() method gives the values of all the CSS properties of an element after applying the active stylesheets and resolving any basic computation those values may contain.

Window.getComputedStyle()方法可以获取当前元素所有最终使用的 CSS 属性值.返回的是一个 CSS 样式声明对象(object CSSStyleDeclaration),只读.也就是说,获取到的不仅仅是我们自定义的样式,它包含了所有作用在当前元素上的 css 属性及属性值.

语法

var style = window.getComputedStyle(element[, pseudoElt]);

其中 element 是必需的参数,代表获取样式的元素.pseudoElt 是伪类参数,在 Gecko2.0 之前是必填项,但在现代浏览已经不是了,如果不是伪类的话,设置为 null 即可.

var style = window.getComputedStyle(element, null);

举个栗子

不包含伪类

假设页面上存在一个 id 为 id 的元素,使用 getComputedStyle 方法获取到的元素样式如下所示: example

包含伪类

<style>
 h3::after {
   content: 'rocks!';
 }
</style>

<h3>generated content</h3>

<script>
  var h3       = document.querySelector('h3'),
      result   = getComputedStyle(h3, ':after').content;

  console.log(result); // returns 'rocks!'
</script>

兼容性

Browser compatibility-1 Browser compatibility-2

其中问号部分代表暂无测试,是否兼容暂不确定.

由上图可知,getComputedStyle 的兼容性很不错,基本支持所有的现代浏览器.当然 IE 浏览器自有他的脾气,在 IE9 以下有另一套功能相似的 API,暂且不提.

获取特定属性值

在上面的栗子中,我们可以看到 getComputedStyle 返回的是样式声明对象,包含了元素所有的样式值,那么我们如何获取到想要的属性值呢?有两种方法可以实现这一需求:

getPropertyValue

getPropertyValue 方法可以直接获取 CSS 样式申明对象上的属性值,例如:

window.getComputedStyle(element, null).getPropertyValue('属性名');

可以非常方便的获取到我们想要的属性值.需要注意:不支持驼峰命名,属性名按照 css 的写法,如background-color:

window.getComputedStyle(element, null).getPropertyValue('background-color');

兼容性

除 IE9 以下浏览器,其余现代浏览器均支持.

键值访问

通过键值访问来获取 css 属性较为繁琐,可能需要进行额外的浏览器检测,例如

window.getComputedStyle(element, null).float //错误!

这种写法是错误的,原因是 float 是 js 的一个保留字,不能直接使用.IE 下对应的是 styleFloat,firefox,chorme,safari 下对应的则是 cssFloat.相较而言更建议使用 getPropertyValue 来获取具体属性值.

IE9 以下的替代方法

getComputedStyle 和 currentStyle

currentStyle 是 IE 浏览器特有的的一个属性,element.currentStyle返回的同样是所有元素当前应用的最终 CSS 属性值.但是其中获取到的属性名会存在差异,如上提及的 styleFloat 和 cssFloat.

不过,currentStyle 属性不支持伪类样式获取,这是与 getComputedStyle 方法的重要差异,也是 jQuery 中 css()方法无法获取伪类元素属性的原因.

假设页面上有一个 id 为 test 的元素,示例如下:

var style = document.getElementById('test').currentStyle;

getPropertyValue 和 getAttribute

在 IE 浏览器中的 getAttribute 方法提供了与 getPropertyValue 方法类似的功能,配合 currentStyle 使用,可以访问 CSS 样式对象的属性,用法与 getPropertyValue 类似:

element.currentStyle.getAttribute('float');

可以注意到,使用 getAttribute 同样不需要进行浏览器检测.但是有一点需要注意:在 IE7+的浏览器中,getAttribute 获取属性名可以使用驼峰式命名法,IE6 必须使用驼峰式命名方法,如:

// IE7,8两者均可,IE6必须使用驼峰命名法
element.currentStyle.getAttribute('background-color');
element.currentStyle.getAttribute('backgroundColor');

getComputedStyle 和 style 的区别

我们使用 element.style 也可以获取元素的 CSS 样式声明对象,但是其与 getComputedStyle 方法存在一些差异.

只读与可写

上面提到过 getComputedStyle 方法是只读的,只能获取样式,不能设置;而 element.style 能读能写,八面玲珑.

获取的对象范围

getComputedStyle 方法获取的是最终应用在元素上的所有 CSS 属性对象,即使没有编写任何样式代码,也会获取默认的所有样式的属性和属性值;element.style只能获取元素 style 属性中的 CSS 样式. 可能这样说不太好理解,我们回顾一下 CSS 样式表的表现形式:

<p></p>

var elem = document.querySelector('p');
// 0
elem.style.length
// 261 - chrome 55.0.2883.87
// 249 - firefox 50.0
// 233 - safari 5.1.1
window.getComputedStyle(elem, null).length

很容易看出两者的区别.

getComputedStyle 与 defaultView


>From mdn In many code samples online, getComputedStyle is used from the document.defaultView object. In nearly all cases, this is needless, as getComputedStyle exists on the window object as well. It's likely the defaultView pattern was some combination of (1) folks not wanting to write a spec for window and (2) making an API that was also usable in Java. However, there is a single case where the defaultView's method must be used: when using Firefox 3.6 to access framed styles.

window.getComputedStyle还有另一种写法,就是 document.defaultView.getComputedStyle. 实际上,使用 defaultView 基本上是没有必要的,getComputedStyle 本身就存在 window 对象之中.使用 defaultView 可能一是人们不太乐意在 window 上专门写个东西,二是让 API 在 Java 中也可用. 不过有个特殊情况,在 FireFox3.6 上不使用 defaultView 方法就搞不定的,就是访问框架(frame)的样式.不过 FireFox3.6 已经退出历史舞台,不用过于在意.

小结

summary

这篇博客主要介绍了 getComputedStyle 的前世今生,真正要实现 jQuery 中兼容 IE 及其它现代浏览器的 css()方法还需要额外做一些兼容性的处理.限于篇幅,欲知后事如何,且听下回分解.

参考资料