<span style=\"font-size:18px;\"></span><pre name=\"code\" class=\"javascript\"><html>
<head>
<meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\" />
<title>JavaScript Sample</title>
<style type=\"text/css\">
div{color:#FF0000;font-weight:bold;}
p{color:#000000;font-size: 14px;}
</style>
</head>
<body>
<div id=\"div1\">请点击<a href=\"#\">网站链接</a>
</div>
<script type=\"text/javascript\">
var o = document.styleSheets[0];
var ol = o.rules[1];
alert(ol.style.color);
ol.style.color =\"green\";
alert(ol.style.color);
</script>
</body>
</html>
在测试上述代码的时候,在Google和IE中能够正常运行,以下是google中的运行截图:
但是,放在FF(火狐 29)中确不能运行,没有弹框,出现如下错误:
rules方法在FF中是没有定义的,所以将rules方法换成了cssRules()方法,就能正常运行:
cssRules()在Google和IE中式兼容的。
本文地址:https://www.stayed.cn/item/5473
转载请注明出处。
本站部分内容来源于网络,如侵犯到您的权益,请 联系我