作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
以下代码警告空字符串:
HTML:
<div id="test">test</div>
CSS:
#test{
background-color: #f00;
}
脚本:
alert(document.getElementById('test').style.backgroundColor)
但是如果我在 javascript 中设置 bgcolor 那么它会提醒 bgcolor 值:
document.getElementById('test').style.backgroundColor='#ff0';
alert(document.getElementById('test').style.backgroundColor) // rgb(255,255,0)
那么,如果不在样式表中定义的 js 中设置 bgcolor 值,如何获取它呢?
请注意,如果它来自用户代理的样式表而不是我的,我根本不想获取值。
我是一名优秀的程序员,十分优秀!