本文介绍了使用jQuery获取第二个孩子的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
$(t).html()
返回
<td>test1</td><td>test2</td>
我想从$(t)
对象中检索第二个td
.我正在寻找解决方案,但对我没有任何帮助.知道如何获得第二个元素吗?
I want to retrieve the second td
from the $(t)
object. I searched for a solution but nothing worked for me. Any idea how to get the second element?
推荐答案
抢第二个孩子:
$(t).children().eq(1);
或者,抓住第二个孩子<td>
:
or, grab the second child <td>
:
$(t).children('td').eq(1);
这篇关于使用jQuery获取第二个孩子的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!