このような設定があるとします。
<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*/
}
それは機能しますか、それとも別の方法でこれを行う必要がありますか? 洞察力が欲しいです、ありがとう。