diaporamaMiscWeb
 
◃  Ch. 6 JSON  ▹
 

JSON, JQUERY et AJAX

  • jQuery.getJSON() est un racourci pour
    $.ajax({
    dataType: "json",
    url: url,
    data: data,
    success: success
    });
  • Exemple :
    $.getJSON('test.json', function(data) {
    var items = [];
    $.each(data, function(key, val) {
    items.push('<li id="' + key + '">' + val + '</li>');
    });
    $('<ul/>', {
    'class': 'my-new-list',
    html: items.join('')
    }).appendTo('div#ajaxjson');
    });