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

前端 未结 30 1698
南方客
南方客 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:15

    If you want the result as a list, then use:

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

提交回复
热议问题