Answers:
试试这个:
$('select option:selected').text();
嗨,首先给一个ID作为选择
<select id=theid>
<option value="test">label </option>
</select>
那么您可以像这样调用所选标签:
jQuery('#theid option:selected').text()
$("select#selectbox option:eq(0)").text()
可以将“ option:eq(0)”中的0索引交换为要检索的任何索引选项。
这是有帮助的:http : //www.myphpetc.com/2009/03/jquery-select-element-cheat-sheet.html
为此创建了工作的Plunker。
https://plnkr.co/edit/vR9aGoCwoOUL9tevIEen
$('#console').append("<br/>"+$('#test_s :selected').text())