zoukankan      html  css  js  c++  java
  • Js中的style,currentStyle,getComputedStyle()区别

    Js中的style,currentStyle,getComputedStyle()区别 
      样式表有三种方式:
        1、内嵌样式(inline Style)-是写在Tag里面的,内嵌样式只对所有的Tag有效。
        2、内部样式(internal Style Sheet)-是写在HTML的 里面的,内部样式只对所在的网页有效。
        3、外部样式表(External Style Sheet)-如果很多网页需要用到同样的样式(Styles),将样式(Styles)写在一个以.css为后缀的CSS文件里,然后在每个需要用到这些样式(Styles)的网页里引用这个CSS文件。
        
      区别:
        最常用的是style属性,在JavaScript中,通过document.getElementById(id).style.XXX就可以获取到XXX的值,但意外的是,这样做只能取到通过内嵌方式设置的样式值,即style属性里面设置的值。
        -解决方案:引入currentStyle,runtimeStyle,getComputedStyle style 标准的样式!
        可能是由style属性指定的!
        runtimeStyle 运行时的样式!如果与style的属性重叠,将覆盖style的属性!
        currentStyle 指 style 和 runtimeStyle 的结合!通过currentStyle就可以获取到通过内联或外部引用的CSS样               式的值了(仅限IE) 如:document.getElementById("test").currentStyle.top 要兼容FF,就得需要        
               getComputedStyle() 出马了,注意:getComputedStyle()是firefox中的,currentStyle是ie中的. 比如说 :
     
      #mydiv { width : 300px; } 则:
      var mydiv = document.getElementById('mydiv');
      if(mydiv.currentStyle) {
         var width = mydiv.currentStyle['width'];
         alert('ie:' + width);
      } else if(window.getComputedStyle) {
         var width = window.getComputedStyle(mydiv , null)['width'];
         alert('firefox:' + width);
      }
         另外在FF下还可以通过下面的方式获取:
          document.defaultView.getComputedStyle(mydiv,null).width;
          window.getComputedStyle(mydiv , null).width;
  • 相关阅读:
    用户登录
    在ASP.NET里实现计算器代码的封装
    计算器的封装
    典型用户和场景-老陈、小石头
    葫芦娃团队
    20155235 王玥 《基于Arm实验箱的接口测试和应用》 课程设计报告
    实验补交专用链接随笔
    20155235 《网络攻防》 实验九 Web安全基础
    20155235 《网络攻防》 实验七 网络欺诈防范
    20155235 《网络攻防》 实验八 Web基础
  • 原文地址:https://www.cnblogs.com/clouds008/p/2506890.html
Copyright © 2011-2022 走看看