複数のクラスで「場所」を呼び出し、「赤」がクラスの 1 つにあるかどうかを調べる必要がある場合、jQuery でそれを行うことができますか?
<td title="Location" id="location_1" class="location" colspan="5">Red</td>
<td title="Location" id="location_2" class="location" colspan="5">Yellow</td>
.
.
.
<td title="Location" id="location_10" class="location" colspan="5">Orange</td>
以下を試しましたが、うまくいきません。
if($(".location").find("Red")){
alert("found!");
}
それを行う適切な方法は何ですか...可能であれば。どうもありがとう!