0

在我的应用程序中,我有四个 div 。我想为它们分配来自 ajax 的相应数据(以 json 格式。)。此外,如果 Json 响应中有更多项目,我希望它重复填充到相同的 div 中。那么,如何将数据填充到 div 中呢?

4

1 回答 1

1

在您的 AJAX 回调函数中,您可以添加每个循环。

function(data){
//Populate your four divs here, make sure each time you populate a div to remove that information from your data object so you can do the below loop with the remaining data.
    $.each(data, function(){
    //Create new divs here with .append and populate them with additional data.
    });
}
于 2013-09-20T12:56:59.977 回答