js獲取class中的屬性
js獲取class中屬性需要的函式obj.currentStyle[attr]和getComputedStyle(element, null)
var oDiv = document.getElementById('div1');
function getStyle(obj, attr){
return obj.currentStyle ? obj.currentStyle[attr] : getComputedStyle(obj, false)[attr];
}
getStyle(oDiv, 'width')