$(t).html()
returns
test1test2
I want to retrieve the second td<
td<
grab the second child:
$(t).children().eq(1);
or, grab the second child : $(t).children('td').eq(1); 0 讨论(0) 查看其它9个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
: $(t).children('td').eq(1); 0 讨论(0) 查看其它9个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
$(t).children('td').eq(1);