Get selected text from a drop-down list (select box) using jQuery

前端 未结 30 1704
南方客
南方客 2020-11-21 15:58

How can I get the selected text (not the selected value) from a drop-down list in jQuery?

30条回答
  •  盖世英雄少女心
    2020-11-21 16:18

    For those who are using SharePoint lists and don't want to use the long generated id, this will work:

    var e = $('select[title="IntenalFieldName"] option:selected').text();
    

提交回复
热议问题