Board logo

标题: 关于取本地的css文本方法 [打印本页]

作者: admin    时间: 2012-8-25 13:29     标题: 关于取本地的css文本方法

<html>
<head>
<link rel='stylesheet' type='text/css' href='guide.css'>
<script type='text/javascript'>
window.onload=function()
{

alert(document.styleSheets[0].cssText);
}
</script>
</head>
<body>
</body>
</html>

================================
测试结果:
ie 可以
chrome,错误
firefox错误


<html>
<head>
<link rel='stylesheet' type='text/css' href='guide.css'>
<script type='text/javascript'>
window.onload=function()
{

alert(document.styleSheets[0].cssRules);
}
</script>
</head>
<body>
</body>
</html>

========================================
测试结果   
ie:  undefined
firefox :  [object cssrulelist]
chrome:null




欢迎光临 杰表技术论坛 (http://bbs.jatools.com/) Powered by Discuz! 6.1.0