1

嗨,我有一个用于 URL 验证的 jquery 验证方法,

目前我使用这样的验证规则

 var urlregex = new RegExp("^(http|https|ftp)\://([a-zA-Z0-9\.\-]+(\:[a-zA-Z0-9\.&%\$\-]+)*@)*((25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9])|([a-zA-Z0-9\-]+\.)*[a-zA-Z0-9\-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(\:[0-9]+)*(/($|[a-zA-Z0-9\.\,\?\'\\\+&%\$#\=~_\-]+))*$");
 var urltest=urlregex.test(url);

这验证了

1. http://abcd 为真。

2. http://abcd.com 为真。

3. http://www.abcd 为真。

4. http://www.abcd.com 为真。

我只希望第 4 个 URL 是真实的。

我想要一个需要的验证

wwwhttp:// (or like https:// , ftp://)和以结束.com (or like .org , .lk)

只有这样的 URL 才能验证为 true

http://www.abcd.com
http://www.efgh.lk

请帮忙 。提前致谢 ........................

4

1 回答 1

1

试试这个正则表达式:

^(http|https|ftp)\:\/\/www\.[-0-9a-zA-Z]+\.[a-zA-Z]{2,3}$

更新
正则表达式对象初始化 + 无限数量的子域 + 根域中最多 4 个字符:

var urlregex = new RegExp(/^(http|https|ftp)\:\/\/www\.([-0-9a-zA-Z]+\.)+[a-zA-Z]{2,4}$/);
于 2012-04-23T12:56:08.110 回答