标签: jquery jquery-mobile
我有下拉列表中的项目列表。我希望根据传递的索引从下拉列表中获取值..
答案 0 :(得分:2)
您可以使用eq方法在(从零开始)索引处选择该选项,然后获取其值(val())或文本(text())。
val()
text()
var item = $('#dropdownlist option').eq(index).val();