如何获得第一个< tr>的id of< tbody>在HTML表格中使用jQuery? [英] How to get the id of first <tr> of <tbody> in HTML table using jQuery?

查看:93
本文介绍了如何获得第一个< tr>的id of< tbody>在HTML表格中使用jQuery?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我跟随HTML表:

<table id="blacklistgrid_1"  class="table table-bordered table-hover table-striped">
                      <thead>
                        <tr id="jumbo">
                          <th style="vertical-align:middle">Products</th>
                          <th style="vertical-align:middle">Pack Of</th>
                          <th style="vertical-align:middle">Quantity</th>
                          <th style="vertical-align:middle">Volume</th>
                          <th style="vertical-align:middle">Unit</th>
                          <th style="vertical-align:middle">Rebate Amount</th>
                        </tr>
                      </thead>
                      <tbody class="apnd-test">
                        <tr id="reb1_1">
<td><input type="text" name="pack[1]" id="pack_1" value="" class="form-control" size="8"/></td>
                          <td><input type="text" name="quantity[1]" id="quantity_1" value="" class="form-control" size="8"/></td>
                          <td><input type="text" name="volume[1]" id="volume_1" value="" class="form-control" size="8"/></td>
<td><input type="text" name="amount[1]" id="amount_1" value="" class="form-control" size="9"/></td>
</tr>
                      </tbody>
<tfoot>
                        <tr id="reb1_2">
                          <td><button style="float:right; margin-bottom: 20px" class="products" type="button" class="btn btn-default" onclick="">&nbsp;Add</button></td>
                          <td></td>
                          <td></td>
                          <td></td>
                          <td></td>
                          <td></td>
                        </tr>
                      </tfoot>                                           
                    </table>

现在我想得到第一行的id。在这种情况下,id是 reb1_1 。为了得到它我尝试下面的代码,但它没有工作。

Now I want to get the id of first row from . The id in this case is reb1_1. For getting it I tried below code but it didn't work.

$(document).ready(function() {
$('.products').click(function () {
var row = $(this).closest('table tbody:tr:first').attr('id');
    alert(row);
});

});

谢谢。

推荐答案

首先转到表格tbody然后找到tr然后过滤第一行,如下所示

first go to table tbody then find tr then filter first row like below

var row = $(this).closest('table').find(' tbody tr:first').attr('id');

或者可以尝试

 var row = $(this).closest('table').find(' tbody tr:eq(0)').attr('id');

参考 :首先 和: eq

reference :first and :eq

这篇关于如何获得第一个&lt; tr&gt;的id of&lt; tbody&gt;在HTML表格中使用jQuery?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆