var oDiv=document.getElementById("test");
alert("style~~~~"+oDiv.style.color); //写在样式表里无法读取,只能得到写在行内的
//属性“getComputedStyle”的值为 null、未定义或不是 Function 对象 说明该浏览器不支持getComputedStyle
//getComputedStyle //适用于标准浏览器 IE6、7、8不识别
//currentStyle //使用于IE浏览器 标准浏览器不识别
if(oDiv.currentStyle){
console.log(oDiv.currentStyle.width);
}else{
console.log(getComputedStyle(oDiv).height);
}