Get next row td value of matched td value of a particular row using jquery

后端 未结 1 856
南方客
南方客 2021-01-29 16:01

I\'ve tr\'s something like this..

16676
26582&         


        
相关标签:
1条回答
  • 2021-01-29 16:14

    You need td:eq(1) not td:eq(6). also to get the clicked dom refernce you need to use $(this):

    $(this).parent().next().find("td:eq(1)").text();
    
    0 讨论(0)
提交回复
热议问题