“SELECT2 sur le changement” Réponses codées

SELECT2 sur le changement

<script>
  	$('#exampleSelect2').select2().on('change', function(){
		// ...
	});
</script>
hirohito

Select2.org Events

$('#mySelect2').on('select2:select', function (e) {
    var data = e.params.data;
    console.log(data);
});
Lokesh003

select2 onchange

//Initialize Select2 Elements
$('#select2-positions').select2().on("change", function (e) {
	console.log($(this).val())
});

//other events
//https://select2.org/programmatic-control/events
iF n OnLy iF

SELECT2 Sélectionnez la valeur en ne modifiant pas

 any .val() updates need to be followed by
$('#unit').val('21'); // Select the option with a value of '21'
    $('#unit').trigger('change'); // Notify any JS components that the value changed
Singh99

SELECT2 Remplacer les options

var options = [];
$.each(dataReturn, function (i, obj) {
    //console.log(i);
    //console.log(obj);
    options.push({
        text: obj.NickName,
        id: obj.NickName
    });
})
$("#BeneType").empty().select2({
    data: options
});
Long Leopard

Réponses similaires à “SELECT2 sur le changement”

Questions similaires à “SELECT2 sur le changement”

Plus de réponses similaires à “SELECT2 sur le changement” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code