通过js获取元素的样式
/*
参数:
obj 要获取样式的元素
name 要获取的样式名
*/
function getStyle(obj,name){
/* if (window.getComputedStyle){
return getComputedStyle(obj,null)[name];
}else{ //IE8不兼容getComputedStyle
return obj.currentStyle[name]
} */
if(obj.currentStyle){
return obj.currentStyle(name)
}else{
return getComputedStyle(obj , null)[name]
}
}