码迷,mamicode.com
首页 > Web开发 > 详细

原生js获取外联样式

时间:2018-09-12 15:07:58      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:节点   ret   lse   current   win   支持   return   使用   att   

1、getComputedStyle(ele,null).fontSize //ele所需获取样式的元素节点 第二个参数填null就好。后面属性是你需要的样式属性。ie不支持。

2、ie:oBox.currentStyle.fontSize //ie内使用currentStyle

3、兼容:

  function getCurrentStyle(ele,attr){

    if(window.getComputedStyle){

      return getComputedStyle(ele,null)[attr];//[attr]的方式取属性可以使用变量,而点的方式不能。

    }else{

      return ele.currentStyle[attr];

    }

  }

 

原生js获取外联样式

标签:节点   ret   lse   current   win   支持   return   使用   att   

原文地址:https://www.cnblogs.com/muzs/p/9634654.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!