我如何使用 jQuery 选择这个 id 属性
我想从 标记中获取 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
这就是您所需要的:
查看它的工作此处
另外,请查看jQuery 选择器 :)
This is what you need:
See it working here
Also, have a look in jQuery Selectors :)
尝试 -
演示 - http://jsfiddle.net/6KG6V/1
Try -
Demo - http://jsfiddle.net/6KG6V/1