使用css text属性的时候要注意,下面代码可以看出,在IE6/7/8下cssText返回值少了分号:如下
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 :
可以看到IE6/7/8中少了分号。使用cssText属性时需注意。