//获取内部样式
function getStyle(obj,attr){
if(obj.currentStyle){//针对IE浏览器
return obj.currentStyle[attr];
}else{//针对firefox浏览器
return getComputedStyle(obj,false)[atrr];
}
}
慕娘2634218
2014-10-12
举报
0/150
提交
取消