如何从jQuery的下拉列表中获取所选文本(而不是所选值)?


当前回答

如果要将结果作为列表,请使用:

x=[];
$("#list_id").children(':selected').each(function(){x.push($(this).text());})

其他回答

如果变量中已经有下拉列表,这对我很有用:

$("option:selected", myVar).text()

这个问题的其他答案对我有帮助,但最终jQuery论坛线程$(this+“option:selected”).attr(“rel”)选项在IE中不起作用帮助最大。

更新:修复了上述链接

这里张贴的答案,例如,

$('#yourdropdownid option:selected').text();

对我来说没用,但这样做了:

$('#yourdropdownid').find('option:selected').text();

它可能是jQuery的旧版本。

$(“#DropDownID”).val()将给出选定的索引值。

$("option:selected", $("#TipoRecorde")).text()

用于获取所选值

$('#dropDownId').val();

要获取所选项目文本,请使用此行:

$("#dropDownId option:selected").text();