获取图像或图像 url 选择该图像

发布于 2024-12-12 05:49:47 字数 64 浏览 0 评论 0原文

我如何使用 javascript 获取图像或图像 url 选择该图像,有任何示例吗?

谢谢 马诺伊

How can i get the image or image url on select that image using javascript, any examples?

Thanks
Manoj

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

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

发布评论

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

评论(2

淡淡绿茶香 2024-12-19 05:49:48

你的问题还不清楚,但假设一个 idmyImage 的图像,并假设“选择”意味着“点击”,你可以这样做:

document.getElementById("myImage").onclick = function() {
    console.log(this.src);
}

这里是工作示例。澄清你的问题,我就能澄清我的答案。

Your question is far from clear, but assuming an image with an id of myImage, and assuming that by "select" you mean "click", you can do this:

document.getElementById("myImage").onclick = function() {
    console.log(this.src);
}

Here's a working example. Clarify your question and I can clarify my answer.

铃予 2024-12-19 05:49:48

使用 jQuery 这相当简单:

$('#image_id').attr('src')

这将返回 id 为“image_id”的图像的 src url。

如果您想要有关点击事件的此信息,您可以像这样连接:

$('#image_id').click(function(){
   alert($(this).attr('src')); 
});

This is fairly straightforward using jQuery:

$('#image_id').attr('src')

This will return the src url of the image with the id of "image_id".

If you want this information on a click event, you can wire that up like this:

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