jQuery formValidator

news/2024/7/11 1:19:17 标签: jquery, 文档
jQuery formValidator表单验证插件3.5a 版本发布,适合jQuery1.3.2类库 这次更新做的几个调整: 1、修改了插件支持jQuery1.3.2类库,并修改了所有的demo 2、修正了在以往升级过程中由于疏漏产生的几个bug 3、补充了帮助文档。修正在升级过程中,有些功能忘记说明的问题 请大家仔细看demo1里的调用,因为1.3.2的选择器语法做了些调整,默认值设置也做了相应调整,具体语法我会在下次一次公布。 下载3.5版本 演示页面: http://www.yhuan.com/formvalidator/demo1.htm http://www.yhuan.com/formvalidator/demo4.htm http://www.yhuan.com/formvalidator/demo5.htm http://www.yhuan.com/formvalidator/demo6.htm

http://www.niftyadmin.cn/n/761422.html

相关文章

javascript遍历数组的两种方法

var aanew Array(1,2,3,4); var num1aa.length; 第一种方法&#xff0c;用循环(利用数组下标) for (var i0;i<num1-1;i) { document.write(aa[i]","); } 第二种方法&#xff0c;当数组的下标是不规则的&#xff0c;只能用for ..in for (var i in aa) …

亲测php基础(isset和empty的区别)

分别设定$var null;$var 0;$var ;$var array();if (empty($var)) {print "This var is set set so I will print.";}echo <hr/>;if (isset($var)) {print "This var is set set so I will print.";} 手册说得挺详细 http://ca.php.net/manual/…

视频缩略图地址、视频flash地址

<?php $link "http://v.youku.com/v_show/id_XMTYwNTkwNTgw.html"; //优酷视频地址 $content file_get_contents($link); preg_match_all("//0800/|(.*?)/|/">/i",$content,$img); $image $img[1][0]; //视频缩略图地址 echo $image; pr…

分享视频增加缩略图

以下是修改方法&#xff08;特别说明&#xff0c;修改前做好备份 &#xff09;&#xff1a; 修改cp_share.php 408行起以下内容 if(preg_match("/(youku.com|youtube.com|5show.com|ku6.com|sohu.com|mofile.com|sina.com.cn)$/i", $parseLink[host], $hosts)) {…

猴子问题

/* 13. 一群猴子排成一圈&#xff0c;按1&#xff0c;2&#xff0c;...&#xff0c;n依次编号。 然后从第1只开始数&#xff0c;数到第m只,把它踢出圈&#xff0c;从它后面再开始数&#xff0c;再数到第m只&#xff0c;在把它踢出去...&#xff0c;如此不停的进行下去&#xff…

php 面试题

简述题(50分) 1、用PHP打印出前一天的时间格式是2006-5-10 22:21:21(2分) echo date(Y-m-d H:i:s, strtotime(-1 day));echo date(Y-n-j H:i:s, time()-60*60*24); 2、echo(),print(),print_r()的区别(3分) echo, print 是语言结构&#xff0c;print_r是函数 echo 不返回值&…

php面试

一、 1、有如下HTML&#xff1a;<img titleaaaa sina_titlebbbb idimg1> 1)用js取得________方法取得该对象&#xff1b; 2)用________属性取得属性title的属性值&#xff1b; 3)用________方法取得属性sina_title的属性值&#xff1b; (1) document.getElemen…

php面试2

PHP面试题汇总-答案&#xff08;转&#xff09;2008-12-30 16:10补充题目答案&#xff1a; 面试题1 1、用PHP打印出前一天的时间格式是2006-5-10 22:21:21 print date(Y-m-d, time()-86400); 2、echo(),print(),print_r()的区别 echo语言结构, print/print_r是函数. print是一般…