zoukankan      html  css  js  c++  java
  • currentStyle和getComputedStyle来获取外部样式

    currentStyle和getComputedStyle来获取外部样式

     

    通过document.getElementById(id).style.XXX就可以获取到XXX的值,但意外的是,这样做只能取到通过内嵌方式设置的样式值,即style属性里面设置的值

     

        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']; //firefox 和 google都可以识别

            alert('firefox:' + width);

        }

     

    }

  • 相关阅读:
    电脑不能连接到热点
    常用网络协议
    HVV面试
    【转载】hacker术语
    渗透测试学习路线
    系统安全——可信计算
    rsync文件同步详解
    rabbitmq集群部署高可用配置
    ansible自动化部署之路笔记
    ELK-elasticsearch-6.3.2部署
  • 原文地址:https://www.cnblogs.com/laneyfu/p/7591728.html
Copyright © 2011-2022 走看看