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


当前回答

var e = document.getElementById("dropDownId");
var div = e.options[e.selectedIndex].text;

其他回答

试试看:

$("#myselect :selected").text();

对于ASP.NET下拉列表,可以使用以下选择器:

$("[id*='MyDropDownId'] :selected")
$("select[id=yourDropdownid] option:selected").text()

这很好

$("#dropdownID").change(function(){
  alert($('option:selected', $(this)).text());
});
$("#yourdropdownid option:selected").text();
var e = document.getElementById("dropDownId");
var div = e.options[e.selectedIndex].text;