【原】获取css属性的计算值

function getStyle(el,p){ 
        if(typeof el=='string') { 
            el=document.getElementById(el); 
        } 
        if (window.getComputedStyle) { 
        //document.defaultView 
            var compStyle = window.getComputedStyle (el, ""); 
        } 
        else { 
            var compStyle = el.currentStyle; 
        } 
        return compStyle[p]; 
 
}
此条目发表在 HTML/Javascript/CSS 分类目录。将固定链接加入收藏夹。

发表评论

电子邮件地址不会被公开。 必填项已用*标注

您可以使用这些HTML标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>