Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在操作表格时,我经常发现自己在做这样的事情:-
$($('table tr').children()[2]).html();
当我希望将第三列中的单元格作为 jQuery 包装集时。使用选择节点[n],然后传递$()给以获取 jQuery 包装集。
[n]
$()
有没有更简洁、更易读的方法来做到这一点?
使用.eq()方法
.eq()
$('table tr').children().eq(2).html();
您也可以使用:eq选择器
:eq
$('table tr > :eq(2)').html();