问答详情
源自:4-2 获取样式

为什么使用火狐浏览器使用getComputedStyle会报错,错误为 obj.getComputedStyle is not a function。求大神们解答

function getStyle(obj,attr){

    if(obj.currentStyle){

        return obj.currentStyle[attr];

    }else{

        return obj.getComputedStyle(obj,false)[attr];

    }

}

提问者:韩世林 2016-03-03 23:03

个回答

  • Lindaql
    2017-04-25 15:11:02

    else{

    return window.getComputedStyle(obj,false)[attr]

    }

  • qq_蓝婷儿_0
    2016-03-04 17:22:12

    function getStyle(obj,attr){

        if(obj.currentStyle){

            return obj.currentStyle[attr];

        }else{

            return getComputedStyle(obj,false)[attr];

        }

    }


  • qq_蓝婷儿_0
    2016-03-04 17:17:45

    是getComputeStyle,拼写错误