为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用JavaScript读取CSS规则值?

如何使用JavaScript读取CSS规则值?

不负相思意 2019-06-13 14:40:44
如何使用JavaScript读取CSS规则值?我想返回一个包含CSS规则所有内容的字符串,就像您在内联样式中看到的格式一样。我希望在不知道特定规则包含什么的情况下能够这样做,所以我不能按样式名称(比如.style.width(等等)CSS:.test {     width:80px;     height:50px;     background-color:#808080;}迄今的守则:function getStyle(className) {     var classes = document.styleSheets[0].rules || document.styleSheets[0].cssRules    for(var x=0;x<classes.length;x++) {         if(classes[x].selectorText==className) {             //this is where I can collect the style information, but how?         }     }}getStyle('.test')
查看完整描述

3 回答

  • 3 回答
  • 0 关注
  • 514 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信