我选择了以下选项:
<select>
<option value="1">A</option>
<option value="2">B</option>
<option value="3">C</option>
</select>
我不知道这些值是什么,但在我的JQuery代码中,我想选择第二个选项,因为我知道文本是B(但没有别的)。
怎么做?
答案 0 :(得分:4)
您可以使用:contains()
选择器:
$('option:contains("B")').prop('selected', true);
可替换地:
$('option')
.filter(function() {
return this.text == 'B';
})
.prop('selected', true);
答案 1 :(得分:3)
如果您不确定这些值是什么,但知道里面的内容是什么,您可以使用:contains()
选择器获取相应的选项,获取其值,然后设置选择。
请注意,:contains()
执行子字符串匹配,因此:contains(foo)
将同时选择<p>foo</p>
和<p>barfoobar</p>
(ThiefMaster指出in the comments) 。
为了更精细地控制选择,你需要我提到的.filter()
选项更进一步。
// relevant option
// : not entirely sure if .val() will get an option's value
var _optionval = $('option:contains("B")').attr('value');
// set select value
$('select').val(_optionval);
我根据你对杰克答案的评论分享以下内容。
:contains()
基本上是为了对元素的内容进行匹配。不管怎么说。
但是,您可以使用类似.filter()
的内容来编写更复杂的代码。
$('option').filter(function () {
// we want the option (or optionS) with text that starts with "foo"
return $(this).text().indexOf('foo') === 0;
// or maybe just something with an exact match
//
// return $(this).text() === 'foo';
});
答案 2 :(得分:2)
<select id="select_id">
<option value="1">A</option>
<option value="2">B</option>
<option value="3">C</option>
</select>
$("#select_id option").each(function (){
if($(this).text()=='B'){
// DO what you want to
}
});
此代码将在选择字段中选择文本“B”的任何选项。我想这就是你想要的
答案 3 :(得分:1)
试试这个(请确保您选择了一个ID,我使用了mySelect
):
$("#mySelect").val($("#mySelect:option:contains('B')").val());
答案 4 :(得分:1)
$('option').each(function(){
var t=this
if(t.text=='B'){
t.selected='selected';
}
});