Das Beispiel in diesem Artikel beschreibt, wie jQuery die Methode zum Abrufen von JSON-Daten bei der Auswahl aus einer Dropdown-Liste implementiert. Teilen Sie es als Referenz mit allen. Die Details lauten wie folgt:
function populateDropDown() { $.getJSON('/getData.aspx',{Name:$('#parm').val()},function(data){ var select = $('#DDLControl'); var options = select.attr('options'); $('option', select).remove(); $.each(data, function(index, array) { options[options.length] = new Option(array['variety']); }); }); } $(document).ready(function() { populateDropDown(); $('#DDLchangeData').change(function() { populateDropDown(); }); });
Ich hoffe, dass dieser Artikel für alle bei der jQuery-Programmierung hilfreich sein wird.