js获取css样式(内联,内嵌,外部)

function getStyle(obj, name)
{
if(obj.currentStyle)
{
return obj.currentStyle[name];//兼容ie版本
}
else
{
return getComputedStyle(obj, false)[name];//兼容FF和谷歌版本
}
}

你可能感兴趣的:(js获取css样式(内联,内嵌,外部))