Si riporta un esempio di codice che permette in Jquery il caricamento di un controllo Select da un Dictionary.
success: function (response) // Dati ricevuti
{
$.each(response, function (key, val) {
var html = '<option value="' + key + '">' + val + '</option>'
$("# DdlControllo ").append(html);
})
},
Nessun commento:
Posta un commento