假设我有类似这样的设置。
<div id="error">
<p style="color:green">Success.</p>
<p style="color:red">Failure.</p>
<p style="color:green">Success.</p>
</div>
在我的javascript中,我运行了这样的东西。
var response = $('#error').html();
if (response.indexOf('red') === -1) {
/*do stuff if #error has no style tags that have the color:red*/
}
这会起作用还是我需要以不同的方式去做?想了解一下,谢谢