我收到一堆我想在某个网格中显示的 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;
});
},
这些怎么做?
谢谢