如何允许localhost URL作为有效URL - 在Validate Min Js中

时间:2014-07-07 11:04:11

标签: jquery regex jquery-validate

我从JQueryValidation找到了一个Jquery插件。

我验证了在提交时Textbox中输入的网址。当我输入托管网址时,它的工作正常。 Https and httphttps://www.google.co.inhttp://test.com/

演示: Here

问题是当我输入asp.net mvc本地主机网址时它不允许作为有效的网址。与http://localhost:65350/Test.htm

一样

如何允许本地主机网址[{1}}

是否可以为jquery.validate.min.js?添加任何自定义方法,这些方法将同时针对字段进行验证。

1 个答案:

答案 0 :(得分:1)

jQuery Validation中还有一个名为url2的方法,它允许一个没有点的网址,从而允许使用localhost网址。

使用rules方法添加它:

$( "#email_input" ).rules( "add", {
  url2: true
});

您可以在此处查看来源: https://github.com/jzaefferer/jquery-validation/blob/master/src/additional/url2.js