jQuery Get Selected Option From Dropdown

前端 未结 30 3878
梦如初夏
梦如初夏 2020-11-22 02:56

Usually I use $(\"#id\").val() to return the value of the selected option, but this time it doesn\'t work. The selected tag has the id aioConceptName

30条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-22 03:29

    you should use this syntax:

    var value = $('#Id :selected').val();
    

    So try this Code:

    var values = $('#aioConceptName :selected').val();
    

    you can test in Fiddle: http://jsfiddle.net/PJT6r/9/

    see about this answer in this post

提交回复
热议问题