01 |
|
02 |
< html > |
03 |
< head > |
04 |
< title >IE6/7/8下cssText返回值少了分号</ title > |
05 |
</ head > |
06 |
< body > |
07 |
< div style = "color:red;" >TEST</ div > |
08 |
< script > |
09 |
var div = document.getElementsByTagName('div'); |
10 |
alert(div[0].style.cssText); |
11 |
</ script > |
12 |
</ body > |
13 |
</ html > |
各浏览器输出如下
IE6/7/8 :
IE9/Firefox/Chrome/Safari/Opera :
可以看到IE6/7/8中少了分号。使用cssText属性时需注意。