使用 jQuery 选择 ID

发布于 2024-12-09 03:06:38 字数 342 浏览 0 评论 0原文

我有一个表,其中包含通过循环生成的行。每个TR都有一个唯一的ID。 当我使用 .clickMe 类单击 span 时,如何选择该 ID?

<tr id="244">
    <td>...</td>
    <td><span class="clickMe"</td>
</tr>
<tr id="4554">
    <td>...</td>
    <td><span class="clickMe"</td>
</tr>

I have a table with rows generated via a loop. Each TR has a unique ID.
How do I select that ID when I click span with .clickMe class?

<tr id="244">
    <td>...</td>
    <td><span class="clickMe"</td>
</tr>
<tr id="4554">
    <td>...</td>
    <td><span class="clickMe"</td>
</tr>

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

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

发布评论

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

评论(1

﹂绝世的画 2024-12-16 03:06:38

如果结构总是相同,你可以这样做:

var theId = this.parentNode.parentNode.id

如果它不总是相同,那么你可以这样做:

var theId = $(this).closest('tr').attr('id');

因此,将它们放在一起:

$('.clickMe').click(function(){

  var theId = $(this).closest('tr').attr('id'); // or the standard DOM approach

  // other stuff
});

此外,根据规范,您的 Id 不应以数字开头。

IF the structure is always going to be the same you could just do:

var theId = this.parentNode.parentNode.id

If its not always going to be the same then you could do:

var theId = $(this).closest('tr').attr('id');

So putting it all together:

$('.clickMe').click(function(){

  var theId = $(this).closest('tr').attr('id'); // or the standard DOM approach

  // other stuff
});

Also your Id's should not begin with numbers as per the spec.

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