如何做出<选择>用jQuery选择

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

<select id="target">
<option value="1">...</option>
<option value="2">...</option>
</select>
857238 次浏览
$("#target").val($("#target option:first").val());
// 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');

当你使用

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

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

我更喜欢

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

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

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

如果你有禁用选项,你可以添加((残疾人))来防止选择它们,结果如下:

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

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

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

以下是我的做法:

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

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

$("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;


});

如果你打算使用第一个选项作为默认的

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

然后你可以使用:

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

它很漂亮,也很简单。

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

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

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

我发现,在投票最多的答案中,有一个微妙的地方是,即使它们正确地改变了所选的值,它们也不会更新用户看到的元素(只有当用户单击小部件时,才会在更新的元素旁边看到一个复选框)。

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

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

(注意,我是在使用jQuery Mobile和Chrome桌面框时注意到这一点的,所以这可能不是到处都是情况)。

你可以试试这个

$("#target").prop("selectedIndex", 0);
$('#newType option:first').prop('selected', true);
$("#target").val(null);

镀铬加工得很好

虽然每个函数可能都不是必需的…

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

对我有用。

如果你要存储select元素的jQuery对象:

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


...


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

使用:

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

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

就像这样简单:

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

使用:

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

在James Lee Baker的回复后面,我更喜欢这个解决方案,因为它消除了对浏览器支持的依赖:first:selected…

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

它只适用于我在最后使用触发器('change'),就像这样:

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

使用jQuery ECMAScript  6检查这个最佳方法:

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

对我来说,它只在我添加以下代码时起作用:

# EYZ0

对我来说,它只在我添加以下代码时起作用: 因为我想要“重置”表单,也就是说,选择表单的所有选择的所有第一个选项,我使用以下代码:

< p > <代码> $(“形式”);(“选择”). each(函数(){ (美元)。瓦尔($(“选择选项:第一”).val ()); (美元).change (); }); < /代码> < / p >

对我来说,只有当我添加下面这行代码时,它才能工作

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

您可以使用它从dropdown中选择任何选项。

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

# EYZ0

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)

这对我很管用!

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

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

console.log (firstItem)