我如何使用 jQuery 选择这个 id 属性

发布于 2024-12-11 07:29:06 字数 332 浏览 0 评论 0原文

我想从 标记中获取 id 属性的值,即 1_4

<a class="toggle" href="#toggle">
    <img src="tick.png" id="1_4" alt="No">
</a>

我正在使用 jQuery 代码。

$('.toggle').live('click', function() {

});

如何在 jQuery 代码中选择 id 属性的值。

谢谢。

I want to fetch the value of id attribute i.e 1_4 from the <img> tag.

<a class="toggle" href="#toggle">
    <img src="tick.png" id="1_4" alt="No">
</a>

I am using the jQuery code.

$('.toggle').live('click', function() {

});

How do i select the value of id attribute within the jQuery code.

thank you.

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

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

发布评论

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

评论(6

妄断弥空 2024-12-18 07:29:07
$('.toggle').live('click', function() {
  var id = $('img', this).prop('id');
});
$('.toggle').live('click', function() {
  var id = $('img', this).prop('id');
});
み格子的夏天 2024-12-18 07:29:07
$('.toggle').live('click', function() {
    var id = $(this).find('img').attr('id');
});
$('.toggle').live('click', function() {
    var id = $(this).find('img').attr('id');
});
守望孤独 2024-12-18 07:29:07
$('.toggle').live('click', function() {
  var id = $(this).find('img').attr('id');
});
$('.toggle').live('click', function() {
  var id = $(this).find('img').attr('id');
});
↙温凉少女 2024-12-18 07:29:07

这就是您所需要的:

$('.toggle').find('img').attr('id');

查看它的工作此处

另外,请查看jQuery 选择器 :)

This is what you need:

$('.toggle').find('img').attr('id');

See it working here

Also, have a look in jQuery Selectors :)

还不是爱你 2024-12-18 07:29:07
$('.toggle').live('click', function() {
    alert( $(this).find('img:eq(0)').attr('id') );
});
$('.toggle').live('click', function() {
    alert( $(this).find('img:eq(0)').attr('id') );
});
晌融 2024-12-18 07:29:07

尝试 -

$('.toggle').live('click', function() {
    alert($(this).children('img').attr('id'));
});

演示 - http://jsfiddle.net/6KG6V/1

Try -

$('.toggle').live('click', function() {
    alert($(this).children('img').attr('id'));
});

Demo - http://jsfiddle.net/6KG6V/1

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