我对jQuery很新。
我编写了这段代码来选择子TD元素。
$(this)
.children("div.tablescroll_wrapper")
.children("table.tablescroll_body")
.children("tbody")
.children("tr.first")
.children()
工作正常,但看起来不错,有更好的方法吗?
对不起我的低级英语,谢谢
答案 0 :(得分:5)
我不确定你的html结构,但是你想要实现的目标可以实现,
$(this).find("div.tablescroll_wrapper tr.first").children();
答案 1 :(得分:0)
您不必导航整个树。只需将id设置为表或直接选择tr即可:
$(this).find('tr:first').children();
足够好了。否则,选择具有表的id的表:
答案 2 :(得分:0)
$('div.tablescroll_wrapper > table.tablescroll_body > tr.first', this).children();
或
$('div.tablescroll_wrapper > table.tablescroll_body > tr.first > *', this);