标签: jquery html-table
我正在尝试使用JQuery来选择TD中的所有table,不要在其中包含A标记。 (他们应该只有文字)。我怎么能这样做?
TD
table
A
答案 0 :(得分:8)
$("td:not(:has(a))").doStuff();