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

点击下载源码

时间: 2024-10-12 18:33:48

JS验证控件jQuery Validate的相关文章

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

官网地址:http://bassistance.de/jquery-plugins/jquery-plugin-validation jQuery plugin: Validation 使用说明 转载自:http://blog.sina.com.cn/s/blog_608475eb0100h3h1.html 一导入js库<script src="../js/jquery.js" type="text/javascript"></script>

jQuery验证控件jquery.validate.js使用说明

官网地址:http://bassistance.de/jquery-plugins/jquery-plugin-validation jQuery plugin: Validation 使用说明 转载自:http://blog.sina.com.cn/s/blog_608475eb0100h3h1.html 转载自:http://blog.csdn.net/windxxf/article/details/7520340,中文API请参考此处内容 一导入js库<script src="../

jQuery验证控件jquery.validate.js使用说明+中文API - Rex.He - 博客园

官网地址:http://bassistance.de/jquery-plugins/jquery-plugin-validation jQuery plugin: Validation 使用说明 转载自:http://blog.sina.com.cn/s/blog_608475eb0100h3h1.html 一导入js库 <script src="../js/jquery.js" type="text/javascript"></script>

jQuery插件之验证控件jquery.validate.js

今天学习一下jQuery.Validate插件,为便于日后翻阅查看和广大博客园园友共享,特记于此. 本博客转载自:jQuery Validate jQuery Validate 插件为表单提供了强大的验证功能,让客户端表单验证变得更简单,同时提供了大量的定制选项,满足应用程序各种需求.该插件捆绑了一套有用的验证方法,包括 URL 和电子邮件验证,同时提供了一个用来编写用户自定义方法的 API.所有的捆绑方法默认使用英语作为错误信息,且已翻译成其他 37 种语言. 该插件是由 Jörn Zaeff

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

官网地址:http://bassistance.de/jquery-plugins/jquery-plugin-validation jQuery plugin: Validation 使用说明 转载自:http://blog.sina.com.cn/s/blog_608475eb0100h3h1.html 一导入js库<script src="../js/jquery.js" type="text/javascript"></script>

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

官网地址:http://bassistance.de/jquery-plugins/jquery-plugin-validation jQuery plugin: Validation 使用说明 转载自:http://blog.sina.com.cn/s/blog_608475eb0100h3h1.html 一导入js库 <script src="../js/jquery.js" type="text/javascript"> </script&g

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

如需要修改,可在js代码中加入: jQuery.extend(jQuery.validator.messages, {  required: "必选字段",  remote: "请修正该字段",  email: "请输入正确格式的电子邮件",  url: "请输入合法的网址",  date: "请输入合法的日期",  dateISO: "请输入合法的日期 (ISO).",  number

验证控件jQuery Validation Engine调用外部函数验证

在使用jQuery Validation Engine的时候,我们除了使用自带的API之外,还可以自己自定义正则验证.自定义正则验证上一篇已经讲过了,如果想使用自定义函数进行验证怎么办?其实这个控件有个bug,在api中说 也就是在我们需要进行验证的地方加上funcCall[自定义函数名],但是我们会发现总会报错,说找不到你这个函数名.其实它的要求是要添加required进行综合验证,也就是validate[required,funcCall[yorn]],这样它才识别我们的自定义函数.但是我们

验证控件jQuery Validation Engine简单自定义正则表达式

首先上控件的地址http://code.ciaoca.com/jquery/validation-engine/ 具体使用方式网站里说的很清楚,我写这篇文章主要是用于记录如何自己添加自定义正则表达式,这个问题折腾了几次,刚刚才会搞.网上也查了很多,都没有说到点子上的,也许是我太笨没看懂. 进入正题,这个控件很强大,里面的验证足够我们使用,但是有时候我们项目需求可能比较独特,这里面没有怎么办?那就得自己写一个正则然后匹配了,但是我一开始就怎么都找不到该往哪里填入自定义正则. 以上是网站里写的,但是