如何定位第二个< 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)
这将抓住第二个。