We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1926f6a commit f070ba6Copy full SHA for f070ba6
chapter3/04_style_manipulation.md
@@ -178,7 +178,7 @@ line-height: 200px
178
将需要取出样式的目标元素传入 `window.getComputedStyle()` 函数中,即可得到对应元素的实际样式。注意的是这里获取到的样式值为**只读**属性不可修改!
179
180
NOTE:获取的实际为 `CSSStyleDeclaration` 的实例对象。
181
-NOTE+:此方法不支持 IE9 一下版本,IE9 中需使用 `element.currentStyle` 来做兼容。
+NOTE+:此方法不支持 IE9 以下版本,IE9 中需使用 `element.currentStyle` 来做兼容。
182
183
```javascript
184
var style = window.getComputedStyle(element[, pseudoEle]);
0 commit comments