1. 程式人生 > >JS 獲取最終生成的樣式

JS 獲取最終生成的樣式

function getStyle(obj,name){

 return (obj.currentStyle||getComputedStyle(obj,false))[name]

}

currentStyle IE

getComputedStyle 火狐 谷歌