我正在尝试使用 JSON 数据填充表格
这就是我的想法
$.ajax({
dataType: "json",
url: "music.json"
})
.done(function(gamesjson){
DATA = gamesjson;
buildTable(DATA ); // this one is calling the above code
})
.fail(function(){
console.log("music.json error");
})
;
function buildTable(DATA){
var gl = $("#gl");
$.each(DATA.music, function(index, value) {
// code to populate table
??
}
$("#gl").append(gl);
}
我在 buildTable() 中写了什么?另外,如果我的 json 包含 1000 行,那么构建表的最佳方法是什么?
请举例说明。谢谢