понедельник, 30 ноября 2020 г.

jQuery, Ajax, Populate HtmlTable

 https://stackoverflow.com/questions/7196238/populate-html-table-with-jquery

<table id="tablefriendsname">
  <tbody>
  </tbody>
</table>

$.ajax({    
type: "POST",
url: "/users/index/friendsnamefromids",
data: "IDS="+requests,
dataType: "json", 
success: function(response){
    var name = response;
            //Important code starts here to populate table  
    var yourTableHTML = "";
        jQuery.each(name, function(i,data) {
            $("#tablefriendsname").append("<tr><td>" + data + "</td></tr>");
        });
}
});

Комментариев нет:

Отправить комментарий