首页 > 编程 > JavaScript > 正文

JavaScript获取css行间样式,内连样式和外链样式的简单方法

2019-11-20 09:28:32
字体:
来源:转载
供稿:网友

【行间样式获取】

<div id='div1' style="backgroud:red">测试</div>   <script>  var odiv=document.getElementById('div1');  //先获取到要获取样式的元素标签,也就是获取到div1  console.log(odiv.style.background);      //这样我们就可以获取到了行间的样式了</script>

【内连样式获取】

<html>  <head>    <style>      .div2{        background:red;        }    </style>  </head>  <body>    <div id="div1" class="div2">测试</div>    <script>      var odiv=document.getElementById('div1');      //先获取到要获取样式的元素标签,也就是获取到div1      //console.log(getComputedStyle(odiv,null).background);   getComputedStyle("元素","伪类") 是获取到计算后的样式,第二个参数是伪类,如果没有直接使用null  但是万恶的IE8及之前不支持所以需要用到下面的方法      //console.log(currentStyle.background)  这个只有IE本身支持 也是获取到计算后的样式     console(window.getComputedStyle?getComputedStyle(odiv,null).background:odiv.currentStyle);      //跨浏览器兼容    </script>  </body></html>

【外链样式获取】

<html>  <head>    <link rel="stylesheet"  type="text/css"  href="basic.css"  />      //外链的样式表  </head>  <body>    <div id="div1" class="div2" >测试</div>    <script>      var sheet=document.styleSheets[0]    //获取到外链的样式表      var rule=sheet.cssRules[0]       //获取到外链样式表中的第一个样式      console.log(rule.style.background)    //red  这样就可以获得了外链样式表中指定的样式了    </script>  </body></html>

【外链样式表】

.div2{  background:red;}

以上这篇JavaScript获取css行间样式,内连样式和外链样式的简单方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表