空選擇如下表::對TBODY標籤
<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嗎?
「不,不幸的是,tbody中的縮進和換行符阻止它匹配。」謝謝,爲我節省了一些CSS調試時間。 – rstackhouse