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.
如何选择复选框opacity: 0.5?
opacity: 0.5
选择器:checkbox[style~='opacity: 0.5']不会选择它们。
:checkbox[style~='opacity: 0.5']
该filter()方法允许您编写一个函数,该函数将为所有元素运行,并且仅在函数返回 true 时将它们包含在结果集中。
filter()
$('input[type="checkbox"]').filter(function () { return $(this).css('opacity') == 0.5; }).addClass('marked');
这将在每个不透明度为 0.5 的元素上添加一个“标记”类。
注意:您应该使用类而不是直接从 Javascript 操作和查询 CSS。
尝试这个:
$('input').filter(function() { return $(this).css('opacity') == '0.5'; });