我必须得到元素的css属性(属性可以从它的父元素继承)
Standart jquery .css()可以做到。
所以我有这样的HTML:
<div id="container"> some text<br>
<span id="some">Our element</span>
<br> some text
</div>
<div id="result">
</div>
的CSS:
#some {
font-weight:bold;
}
#container {
text-decoration: underline;
color: rgb(0,255,0);
font-size: 32px;
}
和jQuery代码:
$(function() {
var decor = $("#some").css('text-decoration');
var weight = $("#some").css('font-weight');
var color = $("#some").css('color');
var size = $("#some").css('font-size');
var result = "<br><b>our object's own property:</b>"
result += "<br>font-weight:" + weight + "<br>";
result += "<br><b>inherited properties:</b><br>";
result += "color: " + color + "<br>font-size: " + size + "<br>text-decoration: " + decor;
$("#result").html(result);
});
显示所有属性,但不显示文本修饰。但为什么? http://jsfiddle.net/aQYs2/
答案 0 :(得分:4)
text-decoration在css规范中使用 Inherited:no 定义,但您在示例中使用的其他属性是使用 Inherited:yes
请参阅:http://www.w3.org/TR/CSS2/text.html#propdef-text-decoration
所以一切都很好:)