我想知道如何从链接的样式表中读取 CSS 注释。
我通过以下方式加载了这个示例 CSS:
<link rel="stylesheet" type="text/css" media="all" href="test.css" />
#test1{ border:1px solid #000; }
#test2{ border:1px solid #000; }
#test3{/* sample comment text I'm trying to read */}
我正在FF3中测试这个。以下 javascript 读取规则但不读取#test3
.
window.onload = function(){
s=document.styleSheets;
for(i=0;i < s[0].cssRules.length;i++){
alert(s[0].cssRules[i].cssText);
}
}