日期:2014-05-17 浏览次数:20793 次
如下
?
<!DOCTYPE html>
<html>
<head>
	<title>IE6/7/8下cssText返回值少了分号</title>
</head>
<body>
	<div style="color:red;">TEST</div>
	<script>
		var div = document.getElementsByTagName('div');
		alert(div[0].style.cssText);
	</script>
</body>
</html>
?
?
?各浏览器输出如下
?
IE6/7/8 :
?

?
IE9/Firefox/Chrome/Safari/Opera :
?

?
?
可以看到IE6/7/8中少了分号。使用cssText属性时需注意。
?
?
?
?