$(t).html()
返回
<td>test1</td><td>test2</td>
我想td从$(t)对象中检索第二个。我寻找了一个解决方案,但对我没有任何帮助。知道如何获得第二个元素吗?
td
$(t)
抢第二个孩子:
$(t).children().eq(1);
或者,抓住第二个孩子<td>:
<td>
$(t).children('td').eq(1);
请参阅children和的文档eq。
children
eq