Jquery Plugins Jquery Validate

  Jquery Validate

一.什么是Jquery Validate:

jQuery Validate 插件为表单提供了强大的验证功能。

二.常用值:

1 required:true 必须输入的字段。
2 remote:"check.php" 使用 ajax 方法调用 check.php 验证输入值。
3 email:true 必须输入正确格式的电子邮件。
4 url:true 必须输入正确格式的网址。
5 date:true 必须输入正确格式的日期。日期校验 ie6 出错,慎用。
6 dateISO:true 必须输入正确格式的日期(ISO),例如:2009-06-23,1998/01/22。只验证格式,不验证有效性。
7 number:true 必须输入合法的数字(负数,小数)。
8 digits:true 必须输入整数。
9 creditcard: 必须输入合法的信用卡号。
10 equalTo:"#field" 输入值必须和 #field 相同。
11 accept: 输入拥有合法后缀名的字符串(上传文件的后缀)。
12 maxlength:5 输入长度最多是 5 的字符串(汉字算一个字符)。
13 minlength:10 输入长度最小是 10 的字符串(汉字算一个字符)。
14 rangelength:[5,10] 输入长度必须介于 5 和 10 之间的字符串(汉字算一个字符)。
15 range:[5,10] 输入值必须介于 5 和 10 之间。
16 max:5 输入值不能大于 5。
17 min:10 输入值不能小于 10。

三.Demo:

html:

<body>
    <div>
        <form id="form1" action="/" method="post">
            <input type="text" name="Name" /><br />
            <input id="Pwd" type="text" name="Pwd" /><br />
            <input type="text" name="Pwd_ok" /><br />
            <input type="text" name="Email" /><br />
            <input type="text" name="Address" /><br />
            <input type="text" name="Age" /><br />
            <input type="submit" value="提交" />
        </form>
    </div>
</body>

js:

    <script type="text/javascript">
        $(function () {
            $("#form1").validate({
                rules: {
                    Name: {
                        required: true
                    },
                    Email: {
                        required: true,
                        email: true
                    },
                    Pwd: {
                        required: true,
                        digits: true,
                        rangelength: [5, 10]
                    },
                    Pwd_ok: {
                        required: true,
                        digits: true,
                        rangelength: [5, 10],
                        equalTo: "#Pwd"
                    }
                },
                messages: {
                    Name: {
                        required: "*请输入名称"
                    },
                    Email: {
                        required: "*邮箱不能空",
                        email: "*邮箱格式不正确"
                    }
                }
            })
        });

    </script>

四.下载:

菜鸟教程提供CDN:

http://static.runoob.com/download/jquery-validation-1.14.0.zip

如果使用的是visual studio IDE,可以直接使用Nuget 工具下载;

时间: 2024-10-31 03:54:20

Jquery Plugins Jquery Validate的相关文章

jQuery plugins

http://jquery.com/ http://jqueryui.com/ http://www.jqueryrain.com/ http://plugins.jquery.com/ http://www.jqueryscript.net/ http://jqueryhouse.com/

Writing Your Own jQuery Plugins

Setting Up 1 <script src="js/jquery-1.9.1.min.js"></script> 2 <script src="js/jquery.hello-world.js"></script> The jQuery Plugin Structure 1 (function($) { 2 3 $.fn.helloWorld = function() { 4 5 // Future home o

jQuery plugins 图片上传

http://plugins.jquery.com/ 用到一下插件: magnific popup 看大图 jQuery File Upload 多文件上传 jQuery Rotate 图片旋转 github 项目地址: [email protected]:witaste/imgupload.git 效果截图:

Best jQuery Plugins of the Month – May 2014

1. jQuery referenceSection jQuery referenceSection by Scott Mascio ensures to help users in adding a reference section to page along with the description of each selected elements that can be seen on hovering. Demo | Download 2. Address Field Address

jQuery校验 jQuery Validate 表单验证详解

官网地址:http://bassistance.de/jquery-plugins/jquery-plugin-validation 一导入js库 <script src="../js/jquery.js" type="text/javascript"></script> <script src="../js/jquery.validate.js" type="text/javascript"&g

从零开始学习jQuery (九) jQuery工具函数

原文:从零开始学习jQuery (九) jQuery工具函数 本系列文章导航 从零开始学习jQuery (一) 开天辟地入门篇 从零开始学习jQuery (二) 万能的选择器 从零开始学习jQuery (三) 管理jQuery包装集 从零开始学习jQuery (四) 使用jQuery操作元素的属性与样式 从零开始学习jQuery (五) 事件与事件对象 从零开始学习jQuery (六) jQuery中的Ajax 从零开始学习jQuery (七) jQuery动画-让页面动起来! 从零开始学习jQ

Asp.Net MVC4开发三:HTML5、CSS3、JQuery、JQuery UI的应用

在Asp.Net MVC4里面UI层也就是View层默认使用HTML5以及与HTML相对应的CSS3,JS默认使用JQuery和JQuery UI.新建一个MVC4项目,项目会自动包含JQuery.JQuery UI所需要的文件及智能提示支持; HTML则是自动生成HTML5格式标签的页面. 先来看看MVC4项目里面对这些内容的支持: 在MVC4项目里面有Scripts和Content两个文件夹,Scripts里面存放Java scripts库包括JQuery, JQuery UI, JQuer

JQuery 定时器 (Jquery Timer 插件)

jQuery Timers插件地址: http://plugins.jquery.com/project/timers JQuery Timers应用知识提供了三个函式1. everyTime(时间间隔, [计时器名称], 函式名称, [次数限制], [等待函式程序完成])2. oneTime(时间间隔, [计时器名称], 呼叫的函式)3. stopTime ([计时器名称], [函式名称])/***************************************************

JQuery的 jQuery.fn.extend() 和jQuery.extend();

原文链接:http://caibaojian.com/jquery-extend-and-jquery-fn-extend.html jQuery.fn.extend(); jQuery.extend(); jQuery.fn jQuery.fn = jQuery.prototype = { init: function( selector, context ) {//…. //…… }; 原来 jQuery.fn = jQuery.prototype.对prototype肯定不会陌生啦. 虽然