猿问

jQuery获取table中点击位置所在行的td?

  1. 点击查看后,获取所在行的内容,不包含操作列的内容

  2. `

    $(".a_see").on('click',function(){               var arrayContent = [];               if($("table tr").length>1){
                       $("table tr").find("td").each(function(){
                        arrayContent.push($(this).not(".operate").text());    
                       //arrayContent = arrayContent.slice(0,6);                
                       })
                   }                
                   console.log(arrayContent);
               });

`

表格如下:

这是我打印的结果,我点击查看,所有的表格内容都获取了,但我只需要当前行的数据

https://img3.mukewang.com/5ba0e34e0001c6b405800039.jpg

https://img.mukewang.com/5ba0e3570001024106380229.jpg

婷婷同学_
浏览 1764回答 1
1回答

当年话下

$(".a_see").on('click', function() {    var arrayContent = [];    $(this).closest('tr').find('td').each(function() {        arrayContent.push($(this).not(".operate").text());    })    console.log(arrayContent);});
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答