Jquery客户端校验——jquery.validate.js


jQuery Validate 插件为表单提供了强大的验证功能,让客户端表单验证变得更简单,同时提供了大量的定制选项,满足应用程序各种需求。该插件捆绑了一套有用的验证方法,包括 URL 和电子邮件验证,同时提供了一个用来编写用户自定义方法的 API。使用方法如下

1.引用JS库


2.校验规则:

3.  .NET MVC Demo应用案例:





@using (Html.BeginForm("Index", "Home", FormMethod.Post,new {@id="login", @class = "login-form fade-in-effect" }))
{

Dear user, log in to access the admin area!












@Html.ValidationMessage("username")
@Html.ValidationMessage("password")






}

相关