我有以下 DOM 树:
<div class="myclass">
<td>
// lots of td and tr elementds...
</td>
<div>
// lots of td and tr and div elementds...
.....
.....
<span class="myspan">
// lots of td and tr and div elementds...
.....
.....
</span>
</div>
</div>
我有几个主要的 div 元素 - class="myclass" 的 div
我有以下代码:
$("div").each(function(i,e) {
if ($(e).hasClass("myclass")) {
// up to here i have all the div with myclass
.....
.....
//code should be added here
}
})
如何使用 JQuery 检索主 div 元素内的 myspan 类的所有 span 元素?
我想更清楚一点:我需要的是一个具有 class = myspan 并且位于当前 div 元素下的元素列表,代码应该添加到我写的地方,因为每个 div 元素都会有一组不同的元素.
我希望我现在清楚自己。请帮忙,谢谢