Witajcie przyjaciele, to jest mój kod:
<select id='first'>
<option value='1'> First </option>
<option value='2'> Second </option>
<option value='3'> Three </option>
</select>
To jest mój kod select2:
$("#first").select2();
Poniżej znajduje się kod do uzyskania wybranej wartości.
$("#first").select2('val'); // It returns first,second,three.
To jest zwracanie tekstu takiego jak first,second,three
i chcę otrzymać 1,2,3
.
Oznacza, że potrzebuję wartości pola wyboru, a nie tekstu.