jQuery检测并验证URL

时间:2011-10-09 18:13:50

标签: javascript jquery html

让我们想象一下我有这样的文字:

Hi, my name is Pablo and my home page is http://zad0xsis.net

如何检测并验证网址,以便自动将其包装到<a href="the detected url">the detected url</a>? 谢谢!

2 个答案:

答案 0 :(得分:5)

您可以使用正则表达式:

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);

Live demo

答案 1 :(得分:0)

还可以尝试使用jquery linkify插件@ http://code.google.com/p/jquery-linkify/

易于使用 -

$('.section').linkify();

与Darin提到的相同。