gpt4 book ai didi

javascript - 如何在数据表中捕获 td 索引?

转载 作者:行者123 更新时间:2023-11-30 14:01:48 26 4
gpt4 key购买 nike

我有数据表并试图在用户按下它时捕获列+行索引:

$('#datatable tbody').on('click', 'tr', function(){
var eq = $(this).index();
console.log(eq);

});

因此,我可以通过这种方式捕获行 (tr) 的索引。但是,我还需要 column (td index) 。有没有人可以建议一些方法?

这是一个 example类似的任务,只是从后面(当有人需要很少的 catch 手时)。我在 jquery 中不够好,无法将其转换为我的麻烦。

最佳答案

您可以监听 td 点击,然后获取被点击的 td 及其父级 tr 的索引:

$('#datatable tbody').on('click', 'td', function(){
var clicked_td = $(this);
var td_index = clicked_td.index();
var tr_index = clicked_td.parent().index();
console.log(td_index);
console.log(tr_index);
});

关于javascript - 如何在数据表中捕获 td 索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56201009/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com