标题几乎是自我解释的。我需要选择表单上的所有选择元素,除了那些具有“。notSelectable”类
的元素答案 0 :(得分:1)
$('#yourform select').not('.notSelectable')
或
$('#yourform select:not(.notSelectable)')
第一个是generally preferred。
答案 1 :(得分:0)
尝试.not()方法
$("select").not('select.notSelectable');