jquery:tr内td的序号

发布于 2024-09-04 21:06:49 字数 147 浏览 3 评论 0 原文

我的 html 表中有一行仅包含图像。 (这也恰好是第一行)。这些图像也连接到点击事件。在尝试处理点击事件时,我可以找到它的父级(即 元素)。但我想知道它在表行中的相对序数 (>)。

I have a row in an html-table that contains only images. (this happens to be the first row too). Those images are wired for a click event too. While trying to handle the click event I can find out its parent (i.e. <td> element). But I want to know its relative ordinal in the table row (<tr>).

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

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

发布评论

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

评论(2

花想c 2024-09-11 21:06:49

您可以使用 index() 函数查找序数:

$('td img').click(function() {
   var ordinal = $(this).closest('tr').children().index($(this).parent());
   // ...
});

You can find the ordinal with the index() function:

$('td img').click(function() {
   var ordinal = $(this).closest('tr').children().index($(this).parent());
   // ...
});
人生百味 2024-09-11 21:06:49

当前元素之前的元素数量将是其在 DOM 中相对于父元素的索引。您可以使用 .prevAll() 并获取结果集的长度:

$('td').click(function(){
  alert($(this).prevAll().length);
});

jsfiddle 上提供演示

The number of elements before the current element will be its index in the DOM relative to the parent. You can use .prevAll() and get the length of the resulting set:

$('td').click(function(){
  alert($(this).prevAll().length);
});

Demo available on jsfiddle

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