如何通过在JavaScript中使用jQuery单击按钮来选择下拉列表中的所有值? 最佳答案 $(function(){ $('select').children('option').attr('selected', 'selected'); }); 应该做。当然,您将需要一个具有属性SELECT的multiple元素。