获取不到Dom的backgroundColor属性?
index.html
<div id="box"></div>
index.css
#box{
width: 50px;
height: 50px;
background: red;
}
js:
window.onload = function(){
console.log(document.getElementById("box").style.backgroundColor);
}
最后输出为空。这里为什么获取不到DOM的style属性呢?
天道蓝蓝猫
9 years, 2 months ago