我正在嘗試從主對象中獲取對象。主對象中的數組包含 這些其他對象,我可以通過調用'oData.events.event[0]
'來訪問第一個元素,但是我想循環獲取[1], [2], [3]
等等。我正在嘗試從主對象中獲取對象
//this works
var collection = oData.events.event[0];
$("<li>description: " + collection.description + "</li>").appendTo("#shower");
//this does not work :(
var collection = oData.events.event[0];
var output = "<ul>";
for (var i = 0; i < collection.length; i++)
{
output += "<li>" + collection.description + "</li>";
$(output).appendTo("#shower");
collection = collection + 1 //shift to next array
}
output += "</ul>";