主题:遍历样式但是找不到cssRule对象,求教.
遍历样式但是找不到cssRule对象,求教.
代码如下:
<html>
<head><title>遍历网页中所有样式表和它的规则</title>
<script language="javascript">
function jiazai(){
alert(document.styleSheets[0].cssRules.length);//document.styleSheets.length有用,但加了cssRules.length就没用}
</script>
<style type="text/css">
a{
color:#ff3300;
}
td{
background:#336600;
}
</style>
</head>
<body>
<a href="#" id="a1" style="font-size:24px;font-style : italic" onClick="jiazai()">你好啊</a>
</body>
</html>
cssRules.length就没用,说明就是缺少cssRule对象,可我用的是IE5.5支持这个啊.怎么回事那位高人来解答下.谢谢。
代码如下:
<html>
<head><title>遍历网页中所有样式表和它的规则</title>
<script language="javascript">
function jiazai(){
alert(document.styleSheets[0].cssRules.length);//document.styleSheets.length有用,但加了cssRules.length就没用}
</script>
<style type="text/css">
a{
color:#ff3300;
}
td{
background:#336600;
}
</style>
</head>
<body>
<a href="#" id="a1" style="font-size:24px;font-style : italic" onClick="jiazai()">你好啊</a>
</body>
</html>
cssRules.length就没用,说明就是缺少cssRule对象,可我用的是IE5.5支持这个啊.怎么回事那位高人来解答下.谢谢。