如何使用jQuery </select>选择<select>的第一个选项

时间:2009-09-12 04:28:50

标签: jquery select

如何使用jQuery创建第一个选项?

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

28 个答案:

答案 0 :(得分:870)

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

答案 1 :(得分:151)

你可以试试这个

$("#target").prop("selectedIndex", 0);

答案 2 :(得分:106)

// remove "selected" from any options that might already be selected
$('#target option[selected="selected"]').each(
    function() {
        $(this).removeAttr('selected');
    }
);


// mark the first option as selected
$("#target option:first").attr('selected','selected');

答案 3 :(得分:63)

使用时

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

如果第一个选项值为空,则无法在Chrome和Safari中使用。

我更喜欢

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

因为它可以在所有浏览器中使用。

答案 4 :(得分:41)

更改选择输入的值或调整所选属性可能会覆盖DOM元素的默认selectedOptions属性,从而导致元素在调用了重置事件的表单中无法正确重置。

使用jQuery的prop方法清除并设置所需的选项:

$("#target option:selected").prop("selected", false);
$("#target option:first").prop("selected", "selected");

答案 5 :(得分:31)

$("#target")[0].selectedIndex = 0;

答案 6 :(得分:18)

认为我发现有关最高投票答案的一个微妙之处在于即使他们正确地更改了所选值,他们也不会更新用户看到的元素(仅在他们点击时)小部件将在更新的元素旁边看到一个检查。

将.change()调用链接到最后也会更新UI小部件。

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

(请注意,我在使用jQuery Mobile和Chrome桌面上的一个方框时注意到了这一点,所以在任何地方都可能不是这样)。

答案 7 :(得分:15)

如果您已禁用选项,则可以添加 not([disabled])以防止选择它们,结果如下:

$("#target option:not([disabled]):first").attr('selected','selected')

答案 8 :(得分:14)

重置值(对于多个选定元素)的另一种方法可能是:

$("selector").each(function(){

    /*Perform any check and validation if needed for each item */

    /*Use "this" to handle the element in javascript or "$(this)" to handle the element with jquery */

    this.selectedIndex=0;

});

答案 9 :(得分:8)

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

答案 10 :(得分:7)

这样简单:

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

答案 11 :(得分:6)

我发现如果已经选择了属性,那么只选择设置的attr不起作用。我现在使用的代码将首先取消设置所选属性,然后选择第一个选项。

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

答案 12 :(得分:5)

我将如何做到这一点:

$("#target option")
    .removeAttr('selected')
    .find(':first')     // You can also use .find('[value=MyVal]')
        .attr('selected','selected');

答案 13 :(得分:4)

虽然每个功能可能都没有必要......

$('select').each(function(){
    $(this).find('option:first').prop('selected', 'selected');
});

适合我。

答案 14 :(得分:2)

如果您打算将第一个选项用作默认选项,例如

<select>
    <option value="">Please select an option below</option>
    ...

然后你可以使用:

$('select').val('');

很简单。

答案 15 :(得分:2)

它最终只对我使用触发器(&#39;更改&#39;),如下所示:

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

答案 16 :(得分:1)

使用:

$("#selectbox option:first").val()

请在this JSFiddle中找到工作简单。

答案 17 :(得分:1)

在James Lee Baker的回复背后,我更喜欢这个解决方案,因为它消除了对浏览器支持的依赖:首先:选择......

$('#target').children().prop('selected', false);
$($('#target').children()[0]).prop('selected', 'selected');

答案 18 :(得分:1)

对我而言,只有在我添加以下代码时才有效:

.change();

对我而言,只有在我添加以下代码时才有效: 因为我想&#34;重置&#34;表单,即选择表单所有选择的所有第一个选项,我使用以下代码:

$('form').find('select').each(function(){ $(this).val($("select option:first").val()); $(this).change(); });

答案 19 :(得分:0)

$("#target").val(null);

在chrome中工作正常

答案 20 :(得分:0)

如果您正在存储select元素的jQuery对象:

var jQuerySelectObject = $("...");

...

jQuerySelectObject.val(jQuerySelectObject.children().eq(0).val());

答案 21 :(得分:0)

使用带有ECMAScript 6的jQuery检查这种最佳方法:

$('select').each((i, item) => {
  var $item = $(item);
  $item.val($item.find('option:first').val()); 
});

答案 22 :(得分:0)

对我来说,只有在我添加以下代码行

时才有效
$('#target').val($('#target').find("option:first").val());

答案 23 :(得分:0)

您可以使用dropdown中的任何选项。

// 'N' can by any number of option.  // e.g.,  N=1 for first option
$("#DropDownId").val($("#DropDownId option:eq(N-1)").val()); 

答案 24 :(得分:0)

$('select#id').val($('#id option')[index].value)

用特定的选择标签ID替换 id ,用您要选择的特定元素替换索引

<select class="input-field" multiple="multiple" id="ddlState" name="ddlState">
                                        <option value="AB">AB</option>
                                        <option value="AK">AK</option>
                                        <option value="AL">AL</option>
</select>

因此,在这里进行第一个元素选择时,我将使用以下代码:

$('select#ddlState').val($('#ddlState option')[0].value)

答案 25 :(得分:0)

这对我有用!

$("#target").prop("selectedIndex", 0);

答案 26 :(得分:0)

var firstItem = $("#interest-type").prop("selectedIndex", 0).val();

console.log(firstItem)

答案 27 :(得分:-1)

使用:

alert($( "#target option:first" ).text());