获取图像或图像 url 选择该图像
我如何使用 javascript 获取图像或图像 url 选择该图像,有任何示例吗?
谢谢 马诺伊
How can i get the image or image url on select that image using javascript, any examples?
Thanks
Manoj
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的问题还不清楚,但假设一个
id
为myImage
的图像,并假设“选择”意味着“点击”,你可以这样做:这里是工作示例。澄清你的问题,我就能澄清我的答案。
Your question is far from clear, but assuming an image with an
id
ofmyImage
, and assuming that by "select" you mean "click", you can do this:Here's a working example. Clarify your question and I can clarify my answer.
使用 jQuery 这相当简单:
这将返回 id 为“image_id”的图像的 src url。
如果您想要有关点击事件的此信息,您可以像这样连接:
This is fairly straightforward using jQuery:
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: