在下面的代码中,var "titles" 表示表中的 TD 对象列表。我需要使用titles[index] 表达式访问此列表,但无法弄清楚为什么它对我不起作用。
var titles = source.children("tbody").children("tr").children("td");
titles.each(function( index ) {
if ($(this) !=null) {
alert("TD "+index+"="+$(this).html()); //This works fine
alert("TD "+index+"="+titles[index].html()); // this doesn;t work.
}