jquery如何获取图片的src

发布于 2024-09-27 14:49:50 字数 68 浏览 4 评论 0原文

我有 3 个具有相同 id="UserImages" 的图像,我想知道是否可以单击它们并在 jquery 中获取 scr?

i have 3 images with the same id="UserImages" i wanted to know if i can click on them and get the scr in jquery?

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

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

发布评论

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

评论(1

染柒℉ 2024-10-04 14:49:50

首先,我将它们切换到类(ID 必须是唯一的):

<img class="UserImages" src="..." />

然后使用 a .class< /code> 选择器来查找它们,如下所示:

$("img.UserImages").click(function() {
  alert(this.src);
});

First I'd switch them to classes (IDs must be unqiue):

<img class="UserImages" src="..." />

Then use a .class selector to find them, like this:

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