jQuery – 选择表中的第二行?

前端之家收集整理的这篇文章主要介绍了jQuery – 选择表中的第二行?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何定位第二个< tr>在使用jQuery的表中?我是否使用.closest或nth-child?
// something like this..
var MyLocation = $('.myclass').closest('tr').after('tr');   // fixed


<table class ='myclass'>
<tr>
  <td></td>
</tr>
   <!-- put some thing here -->
<tr>

</tr>

解决方法

$('.myclass tr').eq(1)

这将抓住第二个。

原文链接:https://www.f2er.com/jquery/183053.html

猜你在找的jQuery相关文章