“Get Select2 Selected Value JQuery” Respostas de código

Get Select2 Selected Value

//initialize
$('#mySelect2').select2('data');
//get selected value
$('#mySelect2').find(':selected');
Andrew Lautenbach

JQuery Select2 Definir valor

<select id="lang" >
   <option value="1">php</option>
   <option value="2">asp</option>
   <option value="3">java</option>
</select>

<script>
	$("#lang").select2().select2('val','1');
</script>
Matteoweb

Get Select2 Selected Value JQuery

$('#id :selected').text();
Brahim Akarouch

Selecione Opções do Select2 Control com base em valores usando jQuery

$('#mySelect2').val('1'); // Select the option with a value of '1'
$('#mySelect2').trigger('change'); // Notify any JS components that the value changed
Inexpensive Iguana

Selecione Opções do Select2 Control com base em valores usando jQuery

$('#mySelect2').val(['1', '2']);
$('#mySelect2').trigger('change'); // Notify any JS components that the value changed
Inexpensive Iguana

Respostas semelhantes a “Get Select2 Selected Value JQuery”

Perguntas semelhantes a “Get Select2 Selected Value JQuery”

Mais respostas relacionadas para “Get Select2 Selected Value JQuery” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código