Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 css 选择器时:has ,我只允许放置标签名称等基本属性:
:has
.field:has(input)
但不是:
.field:has(input[type="checkbox"])
为什么是这样?我想选择类字段的元素,而不是输入。
:has不是 CSS 中的选择器——你说的是 jQuery。
利用:$('.field:has(input[type="checkbox"])');
$('.field:has(input[type="checkbox"])');
在这里工作 jsFiddle
.field input[type="checkbox"]
也许像这样?