所以我有一個標準的選擇下拉菜單。 select中的一個選項(最後一個)我有一個文本字符串 - var abc。Jquery Javascript HTML選擇
<select id="exampleselect">
<option>123</option>
<option>xyz</option>
<option>ABC</option>
</select>
var abc = "ABC";
我想要做的就是通過選擇搜索,找到對VAR ABC匹配,則VAR ABC的比賽改變爲所選的選項。
我已經試過什麼:
//gets all the options from the select
var selectoptions = $('#exampleselect').find('option').text();
//if there is a match of var abc to any of the options in the select
if (selectoptions == abc)
{
//work out how to get the index/eq of the matched element
//put matched element as selected value
$('#exampleselect').val(matchedelementindex);
}
所以你想讓最後一個選項是動態的嗎?價值將如何確定? – 2012-01-12 11:05:40