替换 '&'使用 jQuery/CSS 处理图像?
有没有办法可以更改“&”的基本文本版本并用图像替换它?我在想我们可以用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,你可以这样做(假设你想替换
#container
元素内部):我们分两步进行,因为我们不希望 html 代码中的 & 符号被替换
希望这有帮助。干杯
Yes, you could do it like this (asuming you want to replace inside
#container
element):We're doing it in 2 steps because we don't want ampersands in the html code to be replaced
Hope this helps. Cheers
您可能可以搜索
&
或&
并使用String.replace
方法将其替换为您的图像。You could probably search for
&
or&
and use theString.replace
method to replace it with your image.