JQuery - 在按钮单击时设置图像 src
我有一个 Jquery 对话框,单击链接即可打开该对话框。 此单击将使用 AJAX 填充对话框。我需要做的一件事是根据 AJAX 方法返回的数据返回的 ID 用图像填充它。 站点中的图像使用 ImageHandler 来显示图像,如下所示:
~/ImageHandlerDefault.ashx?id=1467
这效果很好,但是有没有办法可以使用 AJAX Web 方法设置图像,或者是否需要回发?
我试图对一个值进行硬编码,但这没有用:
$('.openwoimage').attr('src', '~/ImageHandlerDefault.ashx?id=1467');
我可以更改 alt 等,但 src 无法工作。
有人有任何建议或更好的方法吗?
谢谢
I have a Jquery dialog, which opens up on click of a link.
This click populates the dialog using AJAX. One of the things I need to do is populate it with an image based on the ID coming back from the data returned from the AJAX method.
The images in the site use and ImageHandler to display images like so:
~/ImageHandlerDefault.ashx?id=1467
This works great, But is there a way I can set an image using the AJAX web method or does it need a postback?
I have attempted to hard code a value but this has not worked:
$('.openwoimage').attr('src', '~/ImageHandlerDefault.ashx?id=1467');
I can change the alt etc but the src is nto working.
Does anyone have any advice or a better way of doing it?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 ResolveUrl 从服务器版本获取路径的“客户端”版本。
Use
ResolveUrl
to get the "client" version of the path from the server version.