“Obtener el valor seleccionado select2 jQuery” Código de respuesta

Obtenga el valor seleccionado SELECT2

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

jQuery select2 set Value

<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

Obtener el valor seleccionado select2 jQuery

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

Seleccionar opciones de control SELECT2 basado en 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

Seleccionar opciones de control SELECT2 basado en valores usando jQuery

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

Respuestas similares a “Obtener el valor seleccionado select2 jQuery”

Preguntas similares a “Obtener el valor seleccionado select2 jQuery”

Más respuestas relacionadas con “Obtener el valor seleccionado select2 jQuery” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código