function FetchChild() {
var data = [];
$('#players > li.player').each(function() {
data.push(buildJSON($(this)));
});
return data;
}
function buildJSON($li) {
var subObj = {
"location": $li.contents().eq(0).html(),
"name": $li.contents().eq(1).html(),
"uberx": $li.contents().eq(2).html(),
"uberblack": $li.contents().eq(3).html()
};
$li.children('ul').children().each(function() {
if (!subObj.children) {
subObj.children = [];
}
subObj.children.push(buildJSON($(this)));
});
return subObj;
}
同一樣的CODE , 為什麼我排列不到? DATA 都一致, 是差了什麼嗎? 謝謝
希望有人可以幫到我, 已然停了一個月了