使用正则表达式在jquery中验证url

时间:2016-04-26 04:40:21

标签: jquery regex

您好我想在jquery中验证url所以我正在使用该正则表达式

if(/^(http|https|ftp):\/\/[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(:[0-9]{1,5})?(\/.*)?$/i.test(url)){
} else {
   $('#peUrl-'+index).prev('.errorHint').text("Please enter valid URL");    
}

但是那个正则表达式有时不能解决表达式中的问题吗?

0 个答案:

没有答案