Merhaba arkadaşlar bu benim kodum:
<select id='first'>
<option value='1'> First </option>
<option value='2'> Second </option>
<option value='3'> Three </option>
</select>
Bu benim select2 kodum:
$("#first").select2();
Aşağıda seçilen değeri almak için kod bulunmaktadır.
$("#first").select2('val'); // It returns first,second,three.
Bu gibi bir metin dönüşü first,second,three
ve almak istiyorum 1,2,3
.
Metnin değil, seçim kutusunun değerine ihtiyacım olduğu anlamına gelir.