Skip to content

Commit f070ba6

Browse files
committed
Update 04_style_manipulation.md
一处错别字
1 parent 1926f6a commit f070ba6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chapter3/04_style_manipulation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ line-height: 200px
178178
将需要取出样式的目标元素传入 `window.getComputedStyle()` 函数中,即可得到对应元素的实际样式。注意的是这里获取到的样式值为**只读**属性不可修改!
179179

180180
NOTE:获取的实际为 `CSSStyleDeclaration` 的实例对象。
181-
NOTE+:此方法不支持 IE9 一下版本,IE9 中需使用 `element.currentStyle` 来做兼容。
181+
NOTE+:此方法不支持 IE9 以下版本,IE9 中需使用 `element.currentStyle` 来做兼容。
182182

183183
```javascript
184184
var style = window.getComputedStyle(element[, pseudoEle]);

0 commit comments

Comments
 (0)