-1

我正在尝试使用 jQuery 解析一个表并填充一个数组,我编写了以下代码来执行此操作:

var comments = new Array();

$("#mytable tr:nth-child(odd)").each( function( index ) {
    comments[index]["url"] = $(this).find(".menu2 a").attr("href");
    comments[index]["name"] = $(this).find(".menu2 a").text(); 
    comments[index]["avatar"] = $(this).find(".menu2 a img").attr("src");
    comments[index]["date"] = $(this).find("td[valign] b:first-child").text();
    $(this).find("td[valign] b:first-child").remove();
    comments[index]["report"] = $(this).find("td[valign] .pcomment_report").attr("data-refid");
    $(this).find("td[valign] .pcomment_report").remove();
    comments[index]["comment"] = $(this).find("td[valign]").html();        
});

但它返回给我:

TypeError:无法设置未定义的属性“url”

如何使此代码有效?

4

1 回答 1

5

该消息暗示comments[index]未定义。您需要先创建它:

comments[index] = {};
于 2013-09-09T16:46:47.037 回答