从 td 获取列号

发布于 2024-10-17 09:02:37 字数 572 浏览 1 评论 0原文

tablesorter编写扩展..尽管这是我第一次尝试扩展任何js。我在一行 s & 中有多个

当任何这些选择中的值发生更改时,例如,

$('select').change(function(){

});

我需要获取此选择所在的列来设置 col for:

('tr.result > td:nth-child('+col+')').each(function(){

有没有办法从 td select is in 中获取这个?!?

-- 我的具体问题的解决方案是:

$('select').change(function(){

    td  = $(this).parent('td');

    col = $(td).parent().children().index(td);

});

Writing an extension for tablesorter.. though its my first attempt at extending any js. I have a number of <select>s within a row of <td>s & need to know the column this td sits in.

When a value is changed in any of these selects e.g.

$('select').change(function(){

});

I need to get hold of the column this select is sitting in to set col for:

('tr.result > td:nth-child('+col+')').each(function(){

Is there a way I can get this from the td select is in?!?

--
solution for my specific problem was:

$('select').change(function(){

    td  = $(this).parent('td');

    col = $(td).parent().children().index(td);

});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

杀手六號 2024-10-24 09:02:37

您可以使用index()函数。

col = $(this).parent().children().index($(this));

You can use the index() function.

col = $(this).parent().children().index($(this));
再可℃爱ぅ一点好了 2024-10-24 09:02:37

cellIndex 属性返回表格行的单元格集合中单元格的位置。
w3schools

 td.cellIndex 

演示

The cellIndex property returns the position of a cell in the cells collection of a table row.
w3schools

 td.cellIndex 

demo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文