为了账号安全,请及时绑定邮箱和手机立即绑定

为什么CHROME报错说Uncaught TypeError: Cannot read property 'currentStyle' of undefined

function getStyle(obj,attr) {

if (obj.currentStyle) {

return obj.currentStyle[attr];

}

else{

return getComputedStyle(obj,false)[attr];

    }

}


function startMove(obj,json,fn) {

var flag = true ; 

clearInterval(obj.timer);

obj.timer=setInterval(function () {

for(var attr in json) {

//取当前值

var icur = 0;

if(attr=='opacity') {

icur=Math.round(parseFloat(getStyle(obj,attr))*100);

}

else{

icur=parseInt(getStyle(obj.attr));

}

//计算速度

var ispeed=(json[attr]-icur)/8;

ispeed=ispeed>0?Math.ceil(ispeed):Math.floor(ispeed);

//检测停止

if(icur!=json[attr]) {

flag=false;

}

if(attr=='opacity') {

                obj.style.filter='alpha(opacity:'+(icur+ispeed)+')';

                obj.style.opacity=(icur+ispeed)/100;

}

            else{

            obj.style[attr]=icur+ispeed+'px';

            }    

}

if(flag){

            clearInterval(obj.timer);

            if(fn){

            fn();

            }

            }

},30);

}


正在回答

1 回答

不知道,我有没有看错;

obj.attr 而不是obj, attr; 

逗号;

一个传参数,一个查属性


0 回复 有任何疑惑可以回复我~
#1

Redchan 提问者

非常感谢!
2016-04-20 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么CHROME报错说Uncaught TypeError: Cannot read property 'currentStyle' of undefined

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信