可能重复:
Validate email address in Javascript?
What is the best regular expression to check if a string is a valid URL?
我想测试字符串是否为url,现在我被卡住了。
我正在使用此正则表达式来验证我的URL
/(https|http):\/\/([_a-z\d\-]+(\.[_a-z\d\-]+)+)(([_a-z\d\-\\\.\/]+[_a-z\d\-\\\/])+)*/;
此正则表达式的问题在于它无法验证此类型的URL
http://www.abc/abc/
如何检查这种情况。?