标签: jquery jquery-selectors
如何使用jQuery选择不包含任何<div>元素的所有<img>元素?
<div>
<img>
答案 0 :(得分:18)
$('div:not(:has(img))')
答案 1 :(得分:0)
luigid