如何使用 Jquery 表达式替换特定 URL 并替换为 Html 文本?
您好,我想用一些 Html 文本替换网站链接。
我想用特定的单词替换链接 对于等式。我的 Facebook 网址如下 http://www.facebook.com/chitralekha.in
我想将此 http://www.facebook.com/
网址替换为chitralekha.in
在 Html 页面的每个地方。
我有带有 facebook 链接的 facebook 标签,
<label id="lblfacebook">www.facebook.com/chitralekha.in</label>
我希望将其替换为<标签 id="lblfacebook"> chitralekha.in
例如,我的网站 URL 是固定的。 http://www.facebook.com 或 http://facebook.com。
如何使用Jquery正则表达式来实现它?
Hello I want to replace Website Link with some Html text.
I want to replace Link with specific word
for eq. I have facebook URL as below
http://www.facebook.com/chitralekha.in
I want to replace this http://www.facebook.com/
URL with<a href='http://www.facebook.com/chitralekha.in'> chitralekha.in </a>
in every place in Html page.
I have facebook label with facebook Link
<label id="lblfacebook">www.facebook.com/chitralekha.in</label>
I want it replace with<label id="lblfacebook"> <a href='www.facebook.com/chitralekha.in'> chitralekha.in</a></label>
my website URL is fixed for example. http://www.facebook.com or http://facebook.com.
How can achieve it using Jquery regular expression.?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为这就是您想要的: 演示
也可以获取用户名:演示
I think this is what you're after: Demo
And for grabbing the username too: Demo
可以使用正则表达式来完成。
您查找要替换的文本并执行操作。
It can be done with a regular expression.
You look for the text that you want to replace and you do it.