本文介绍了jQuery检测并验证一个URL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
让我们想象我有这样的文字: 我的名字是Pablo,我的主页是
如何检测并验证该网址会自动将其封装到< a href =检测到的网址>检测到的网址< / a>
中?
Thanks!
解决方案
您可以使用正则表达式:
var s ='我的名字是Pablo,我的主页是http://zad0xsis.net';
var exp = /(\b(https?| ftp | file):\ / \ / [ - A-Z0-9 +& @#\ /%?=〜_ | !: ;] * [ - A-Z0-9 +&安培; @#\ /%=〜_ |])/ IG。
s = s.replace(exp,< a href = \$ 1 \> $ 1< / a>);
alert(s);
。
Let's imagine I have this text:
Hi, my name is Pablo and my home page is http://zad0xsis.net
How can I detect and validate the URL so it automatically wraps it into <a href="the detected url">the detected url</a>
?Thanks!
解决方案
You could use a regex:
var s = 'Hi, my name is Pablo and my home page is http://zad0xsis.net';
var exp = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
s = s.replace(exp,"<a href=\"$1\">$1</a>");
alert(s);
这篇关于jQuery检测并验证一个URL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!