JQuery - 在按钮单击时设置图像 src

发布于 2024-11-17 13:30:31 字数 432 浏览 5 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

书间行客 2024-11-24 13:30:31
$('.openwoimage').attr({
  src: '<%=ResolveUrl("~/ImageHandlerDefault.ashx?id=1467")%>'
});

使用 ResolveUrl 从服务器版本获取路径的“客户端”版本。

$('.openwoimage').attr({
  src: '<%=ResolveUrl("~/ImageHandlerDefault.ashx?id=1467")%>'
});

Use ResolveUrl to get the "client" version of the path from the server version.

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