美文网首页
原生JS获取CSS的实现

原生JS获取CSS的实现

作者: 未來Miral | 来源:发表于2018-07-20 08:44 被阅读0次
    function getStyle(id,styleName){
        var obj = document.getElementById(id);
        var style = null;
        if (window.getComputedStyle) {
            style = window.getComputedStyle(obj, null);    // 非IE
        } else { 
            style = obj.currentStyle;  // IE
        }
        return style[styleName];
    }
    

    相关文章

      网友评论

          本文标题:原生JS获取CSS的实现

          本文链接:https://www.haomeiwen.com/subject/pzqfmftx.html