替换 '&'使用 jQuery/CSS 处理图像?

发布于 2024-11-18 20:12:16 字数 108 浏览 4 评论 0原文

有没有办法可以更改“&”的基本文本版本并用图像替换它?我在想我们可以用 jQuery 来做吗?我不想为此使用 php。

或者有没有办法使用CSS来定位它?

谢谢。

Is there a way I can change the basic text version of '&' and replace it with an image? I was thinking can we do it in jQuery? I don't want to use php for this.

Or is there a way to target it using css?

Thanks.

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

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

发布评论

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

评论(2

蹲在坟头点根烟 2024-11-25 20:12:16

是的,你可以这样做(假设你想替换 #container 元素内部):

var origText = $("#container").text();
$("#container").text(origText.replace(/&/g, "__img_mark__"));
var intermediateHtml = $("#container").html();
$("#container").html(intermediateHtml.replace(/__img_mark__/g, '<img src="ampersand.gif" />'));

我们分两步进行,因为我们不希望 html 代码中的 & 符号被替换

希望这有帮助。干杯

Yes, you could do it like this (asuming you want to replace inside #container element):

var origText = $("#container").text();
$("#container").text(origText.replace(/&/g, "__img_mark__"));
var intermediateHtml = $("#container").html();
$("#container").html(intermediateHtml.replace(/__img_mark__/g, '<img src="ampersand.gif" />'));

We're doing it in 2 steps because we don't want ampersands in the html code to be replaced

Hope this helps. Cheers

怀中猫帐中妖 2024-11-25 20:12:16

您可能可以搜索 && 并使用 String.replace 方法将其替换为您的图像。

You could probably search for & or & and use the String.replace method to replace it with your image.

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