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


当前回答

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

其他回答

Try:

$var = jQuery("#dropdownid option:selected").val();
   alert ($var);

或者要获取选项的文本,请使用text():

$var = jQuery("#dropdownid option:selected").text();
   alert ($var);

更多信息:

http://api.jquery.com/val/http://api.jquery.com/text/

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

用于获取所选值

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

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

$("#dropDownId option:selected").text();
$("#dropdownid").change(function(el) {
    console.log(el.value);
});

或者你可以用这个

$("#dropdownid").change(function() {
    console.log($(this).val());
});

这对我有用

$("#dropdownid").change(function() {
    alert($(this).find("option:selected").text());
});

如果元素是动态创建的

$(document).on("change", "#dropdownid", function() {
    alert($(this).find("option:selected").text());
});