“Obtenga el valor seleccionado del desplegable Select2 en jQuery” Código de respuesta

Obtenga el valor seleccionado SELECT2

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

jQuery para establecer el valor en el botón de desplegable SELECT2

$("#u20_cre").select2().val(["1","6"]).trigger("change");
Calm Chinchilla

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

Obtenga el valor seleccionado del desplegable Select2 en jQuery

$('#mySelect2').find(':selected');
Disgusted Dunlin

Respuestas similares a “Obtenga el valor seleccionado del desplegable Select2 en jQuery”

Preguntas similares a “Obtenga el valor seleccionado del desplegable Select2 en jQuery”

Más respuestas relacionadas con “Obtenga el valor seleccionado del desplegable Select2 en jQuery” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código