给定下表:
<table id="incidents">
<thead>
<tr>
<th></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
使用 jQuery 以下评估为false
:
$("#incidents tbody").is(":empty")
我想使用 CSS 将内容设置为消息:
#incidents tbody:empty {
content: "<tr>message foo</tr>";
}
选择器可以:empty
应用于 tbody 吗?