0

複数のクラスで「場所」を呼び出し、「赤」がクラスの 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!");
}

それを行う適切な方法は何ですか...可能であれば。どうもありがとう!

4

6 に答える 6

0

それらの text() を見つけようとする必要があります (これは、javascript の「InnerText」にマップされます)。

      $("td").each(function()
{
   if($(this).text()=="Red")
   {
     //Do what you want
   }
}); 
于 2013-06-10T06:18:49.157 に答える