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

下面小编就为大家带来一篇JavaScript获取css行间样式,内连样式和外链样式的简单方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

【行间样式获取】

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

【内连样式获取】

<html>   <head>     <style>       .div2{         background:red;         }     </style>   </head>   <body>     <div>测试</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 type="text/css" href="https://www.jb51.net/basic.css"  />      //外链的样式表   </head>   <body>     <div >测试</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行间样式,内连样式和外链样式的简单方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzswzd.html