<div id="example">
<input id="one"> //type may be anything
<input>
<input id="two">
<textarea></textarea>
</div>
现在我如何选择#example's
所有没有id的元素?
答案 0 :(得分:2)
为了select #example's all elements which has not id
,您可以使用:not()
伪类,如下所示:
#example :not([id]) {
/* ... */
}
<强> Online Demo 强>