Как бы я выбрал все элементы таблицы, которые не имеют дочерних элементов td, используя jQuery 1.3.2?
Вы можете попробовать:
$("table:not(:has(tbody > tr > td))").doStuff();
Рабочий пример:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <script type="text/javascript"> $(function() { $("table:not(:has(tbody > tr > td))").css("background", "yellow"); }); </script> <style type="text/css"> table { border-collapse: collapse; } td, th { border: 1px solid black; } </style> </head> <body> <table> <tr> <td>First table</td> </tr> </table> <table> <tr> <th>Second table</th> </tr> </table> </body> </html>
Вы ищете CSS :not() селектор .
:not()
table *:not(td)
Должен это сделать.
Редактировать: ба, неправильно истолковать то, что вы хотели.