码迷,mamicode.com
首页 >  
搜索关键字:validate remote方法    ( 1911个结果
jQuery的validate验证插件使用方法
(1)默认校验规则(1)required:true 必输字段(2)remote:"check.php" 使用ajax方法调用check.php验证输入值(3)email:true 必须输入正确格式的电子邮件(4)url:true 必须输入正确格式的网址(5)date:true 必须输入正确格式的日期...
分类:Web程序   时间:2014-07-16 21:07:47    阅读次数:220
jquery.validate手册 (1)
主要分几部分jquery.validate 基本用法jquery.validate API说明jquery.validate 自定义jquery.validate 常见类型的验证代码下载地址jquery.validate插件的文档地址http://docs.jquery.com/Plugins/Va...
分类:Web程序   时间:2014-07-11 22:53:20    阅读次数:206
jquery.validate手册 (2)
Plugin methodsName Typevalidate( options ) Returns: Validator验证所选的FORMvalid( ) Returns: Boolean检查是否验证通过rules( ) Returns: Options返回元素的验证规则rules( "add",...
分类:Web程序   时间:2014-07-11 22:37:07    阅读次数:253
jquery.validate手册 (5)
一些常用的验证脚本// 手机号码验证jQuery.validator.addMethod("mobile", function(value, element) {var length = value.length;var mobile = /^(((13[0-9]{1})|(15[0-9]{1}))...
分类:Web程序   时间:2014-07-11 21:41:50    阅读次数:188
jquery.validate手册 (4)
默认情况下,验证提示信息用label元素来显示, 并且会添加css class, 通过css可以很方便设置出错控件以及错误信息的显示方式。/* 输入控件验证出错*/form input.error { border:solid 1px red;}/* 验证错误提示信息*/form label.err...
分类:Web程序   时间:2014-07-11 21:36:09    阅读次数:259
jquery.validate手册 (3)
1: 自定义表单提交设置submitHandler来自定义表单提交动作$(".selector").validate({submitHandler: function(form) { alert("验证通过"); }});如果需要提交表单,可以调用form.submit(); 或者$(form).a...
分类:Web程序   时间:2014-07-11 21:34:08    阅读次数:282
thinkPHP中的三大自动
class UserModel extends Model{   protected  $_validate=array( //下面还需要再写数组。一个数组就是一条验证规则   //array('验证字段','验证规则','错误提示','验证条件','附加规则','验证时间'),   //验证字段:需要验证的表单字段名称,也可以表单当中的一些辅助字段,例如验证码,附加码,重复密码等...
分类:Web程序   时间:2014-07-10 21:35:32    阅读次数:280
jQuery验证控件validate使用
一导入js库二、默认校验规则(1)required:true 必输字段(2)remote:"check.php"使用ajax方法调用check.php验证输入值(3)email:true 必须输入正确格式的电子邮件(4)url:true 必须输入正确格式的网址(5)date:true 必须输入正确格...
分类:Web程序   时间:2014-07-06 14:04:28    阅读次数:291
[Leetcode][BST][Validate Binary Search Tree]
判断一颗树是不是二分查找树,非常经典基础的一个算法。我很久之前第一次做的时候,是先求出来了树的前序遍历的结果,然后判断这个数组排序后是否和排序前相同,还要判断重复虾米的,很纠结的一种做法。后来思考了一下怎么用递归的思路做,觉得应该根据定义返回两个子树的最大值和最小值,写了一会代码,发现好麻烦,不太对...
分类:其他好文   时间:2014-07-06 13:14:30    阅读次数:178
[leetcode] Validate Binary Search Tree
Given a binary tree, determine if it is a valid binary search tree (BST).
分类:其他好文   时间:2014-07-03 19:36:49    阅读次数:196
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!