JS验证控件jQuery Validate

Posted 张玉宝

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS验证控件jQuery Validate相关的知识,希望对你有一定的参考价值。

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

 

实现步骤如下:

step1:在body标签中增加一个表单标签

 

  1. <form id="login_form" action="login.action" method="post">  
  2.     <table cellpadding="0" cellspacing="0" border="0" class="form_table">  
  3.         <tr>  
  4.             <td valign="middle" align="right">  
  5.                 Email:  
  6.             </td>  
  7.             <td valign="middle" align="left">  
  8.                 <input type="text" class="inputgri" name="email" />  
  9.                 <span style="color: red">${msg}</span>  
  10.             </td>  
  11.         </tr>  
  12.         <tr>  
  13.             <td valign="middle" align="right">  
  14.                 密码:  
  15.             </td>  
  16.             <td valign="middle" align="left">  
  17.                 <input type="password" class="inputgri" name="password" />  
  18.             </td>  
  19.         </tr>  
  20.     </table>  
  21.     <p>  
  22.         <input type="submit" class="button" value="登录 ?" />  
  23.         <a href="register.jsp">没有注册</a>  
  24.     </p>  
  25. </form>  

 

 

       

step2:导入Validate 插件js文件

 

  1. <script type="text/javascript" src="js/jquery.js"></script>  
  2. <script type="text/javascript" src="js/jquery.validate.min.js"></script>  
  3. <script type="text/javascript" src="js/messages_cn.js"></script>  

 

 

 

 

step3:写js代码

 

  1. <script>  
  2.     $(document).ready(function(){  
  3.         $("#login_form").validate({  
  4.             rules: {  
  5.                 email: {required: true, email: true },  
  6.                 password:{required:true,minlength:6,maxlength:16},  
  7.             },  
  8.             messages: {  
  9.                 email: {required:"需要输入电子邮箱", email:"电子邮箱格式不正确"},  
  10.                 password: {required:"需要输入密码",minlength:"密码长度在6-16个字符之间", maxlength:"密码长度在6-16个字符之间"},  
  11.             }  
  12.         });  
  13.     });  
  14. </script>  

 

 

 

参考链接:http://www.w3cschool.cc/jquery/jquery-plugin-validate.html

 

点击下载源码

 

以上是关于JS验证控件jQuery Validate的主要内容,如果未能解决你的问题,请参考以下文章

jQuery验证控件jquery.validate.js汉化

jQuery验证控件jquery.validate.js的使用介绍

jQuery验证控件jquery.validate.js使用说明+中文API

jQuery验证控件jquery.validate.js使用说明+中文API

表单验证之JQuery Validate控件

一旦我将@Html.DropDownListFor 添加到表单中,Jquery.Validate 就会停止验证任何控件