0
<div style="color:#FFFFFF !important;">

<!-- A Dynamic content comes from from third party. -->
<p style="color:red;"> This should be white instead of red. </p>
<p>Test is test. This should also be white.    </p>
<span> Check is check. This should also be white.    </span>
<!-- Dynamic Content ends -->
</div>

如何在上面给出的 div 中将所有文本设为白色。是否可以使用任何jquery或其他类似语言?

4

2 回答 2

1

使用 Jquerychildren()css()函数来覆盖样式,查看我FIDDLE的演示

于 2013-09-17T07:24:22.603 回答
0

终于找到答案了。

$(div p).css('color':'white');
$(div span).css('color':'white');

这正是我想要的。它也覆盖了所有 p 标签的内联 css。

于 2013-09-18T05:25:25.010 回答