我如何使第一个选项的选择与jQuery?

<select id="target">
  <option value="1">...</option>
  <option value="2">...</option>
</select>

当前回答

就像这样简单:

$('#target option:first').prop('selected', true);

其他回答

就像这样简单:

$('#target option:first').prop('selected', true);

当你使用

$("#target").val($("#target option:first").val());

如果第一个选项值为空,这将在Chrome和Safari中不起作用。

我更喜欢

$("#target option:first").attr('selected','selected');

因为它可以在所有浏览器中工作。

你可以试试这个

$("#target").prop("selectedIndex", 0);
$("#target")[0].selectedIndex = 0;
$("#target").val(null);

镀铬加工得很好