Select <select> 个具有 multiple 属性的元素

Select <select> elements that have the multiple attribute

我不知道这些叫什么,元素是什么(不是class或id),例如:

<select multiple class="form-control" id="exampleSelect2">
  <option>1</option>
  <option>2</option>
</select>

Source

在这种情况下,我想要 select $('select multiple'),以便它选择具有 selectmultiple 名称的任何元素。这个的语法是什么?

multiple 是布尔属性,您可以像这样使用 attr 选择器 $('select[multiple]')

$('select[multiple]').css('background', 'blue');
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<select multiple class="form-control" id="exampleSelect2">
  <option>1</option>
  <option>2</option>
</select>