为什么使用火狐浏览器使用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];
}
}
function getStyle(obj,attr){
if(obj.currentStyle){
return obj.currentStyle[attr];
}else{
return obj.getComputedStyle(obj,false)[attr];
}
}
2016-03-03
举报