“Val Select2 jQuery” Respostas de código

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

Val Select2 jQuery

$('#mySelect2').val('5').trigger('change');
Junior Cercado V.

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

Respostas semelhantes a “Val Select2 jQuery”

Perguntas semelhantes a “Val Select2 jQuery”

Mais respostas relacionadas para “Val Select2 jQuery” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código