我怎么会选择那些没有使用jQuery 1.3.2任何后代td元素的所有表格元素?
Answer 1:
你可以试试:
$("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>
Answer 2:
您正在寻找的CSS :not()
选择 。
table *:not(td)
应该这样做。
编辑:呸,看错你想要的。
文章来源: jQuery: Selecting elements that don't have a specific descendant element