我收到了一些我希望在某些网格中显示的json对象。我想避免在我的js中进行手动编码,例如echo div or echo table tr td, ...
success: function (result) {
$.each(result, function (i, item) {
//this I want to avoid
document.getElementById("myTable").innerHTML = item.Title;
});
},
如何做到这一点?
由于