如何获取点击时多个attr的值

发布于 2024-10-27 16:35:48 字数 242 浏览 1 评论 0原文

$(document).ready(function(){
    $('td#crop').click(function() {
        $('img').each(function(){
          $('this').attr(id);
         alert(id);
        });

        })

});

我试图获取我点击的每个图像的 id 值,但这不起作用,请帮忙

$(document).ready(function(){
    $('td#crop').click(function() {
        $('img').each(function(){
          $('this').attr(id);
         alert(id);
        });

        })

});

I am trying to get the the value of the id of each image I click on but this is not working,Please help

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

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

发布评论

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

评论(1

椵侞 2024-11-03 16:35:48

this 不应该是字符串,您需要保存 .attr() 返回的值。

$(document).ready(function() {
    $('#crop').click(function() {
        $('img').each(function() {
            var id = $(this).attr(id);
            alert(id);
        });
    });
});

其他清理:

  • 添加了一个缺失的分号(尽管这不足以破坏代码)。
  • 将过度指定的选择器 'td#crop' 更改为 '#crop',因为(最多)可以有一个具有特定 ID 的元素。

this should not be a string, and you need to save the value returned by .attr().

$(document).ready(function() {
    $('#crop').click(function() {
        $('img').each(function() {
            var id = $(this).attr(id);
            alert(id);
        });
    });
});

Other cleanup:

  • Added a missing semicolon (though that wasn't enough to break the code).
  • Changed over-specifed selector 'td#crop' to '#crop', since there can be (at most) one element with a particular ID.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文