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

获取元素计算后的css样式封装

时间:2016-12-24 19:41:28      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:att   turn   ack   har   get   console   color   code   osi   

获取元素计算后的css样式封装:

    function getCss(obj,attribute) {
        if(obj.currentStyle) {
            return obj.currentStyle[attribute];}else {
        return window.getComputedStyle(obj,null)[attribute];}
    }

案例:

<!DOCTYLE html>
<html>
<head>
    <meta charset="uft-8" />
    <style>
        #box {width:100px; height: 100px; background:#dfd; position:absolute; left:100px; top:100px;}
    </style>
</head>
<body>
<button id="btn1">200</button>
<button id="btn2">600</button>
<div id="box"></div>
</body>
</html>
<script>
    function getCss(obj,attribute) {
        if(obj.currentStyle) {
            return obj.currentStyle[attribute];}else {
        return window.getComputedStyle(obj,null)[attribute];}
    }
    console.log(getCss(box,‘zIndex‘));
</script>

 

获取元素计算后的css样式封装

标签:att   turn   ack   har   get   console   color   code   osi   

原文地址:http://www.cnblogs.com/darkterror/p/6217992.html

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