Get the value of a dropdown in jQuery

后端 未结 10 2312
臣服心动
臣服心动 2020-11-29 02:46

I have a drop down that has an \'ID, Name\' Pair.

Example

Jon Miller
Jim Smith
Jen Morsin

Jon MIller has ID of 101
Jim Smith has ID of 10

10条回答
  •  [愿得一人]
    2020-11-29 03:05

    As has been pointed out ... in a select box, the .val() attribute will give you the value of the selected option. If the selected option does not have a value attribute it will default to the display value of the option (which is what the examples on the jQuery documentation of .val show.

    you want to use .text() of the selected option:

    $('#Crd option:selected').text()

提交回复
热议问题