如何根据值或文本将下拉列表设置为索引?
答案 0 :(得分:2)
我假设您要根据传递给它的文本值选择下拉列表索引?
$("select option[value="+searchText+"]").attr("selected", true);
答案 1 :(得分:1)
您的意思是选择其值在文本框中的选项吗?
$("#select1").val($("#text1").val());
希望这会有所帮助。干杯
答案 2 :(得分:0)
按值或文本选择下拉列表项,请使用此
//this is to set selected item by value
$('#dropDownList').val('setToNewValue');
//this is to select by text
var findText = $('#textBoxId').val();
$('#dropDownList option').
filter(function () {return ($(this).text() == findText); })).
attr('selected', 'selected');