我有了類似於下面一節的表:的jQuery:兒童()與孩子選擇「>」
<tr>
<td> <span class="myclass"></span>
</td>
<tr>
我的$(本)被設置爲TR元素,我想訪問具有「myclass」類集的Span元素。 以下似乎工作:
if ($(this).children('td').children('span').is('.myclass')){
alert('in here');
}
而是試圖用這個當:
if ($(this).children("td > span").is('.myclass')){
或本:
if ($(this).children("td span").is('.myclass')){
事實並非如此。我認爲以上兩種中的任何一種都會得出類似的結果(雖然通過不同的方法),但顯然不是。
我在這裏錯過了什麼?
謝謝!