码迷,mamicode.com
首页 > 其他好文 > 详细

cv.form.validator

时间:2014-09-11 14:00:32      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:io   ar   for   sp   cti   html   on   c   htm   

有即时验证,加载完验证两种方式:
即时验证:

cv.form.validator(jQuery("#qq").val(),{
	  type:["require","intlength","int"],min:5,max:11,
	  errorFunction:function(obj,options){
		  switch(options.type){
			case "require" :{
				jQuery("#msg_qq").attr("class","tips_error").html("请输入常用的QQ号码!").show();
				break;
			}
			case "intlength" :{
				jQuery("#msg_qq").attr("class","tips_error").html("请输入常用的QQ号码!").show();
				break;
			}
			case "int":{
				jQuery("#msg_qq").attr("class","tips_error").html("请输入正确的QQ号码!").show();
				break;
			}
		}
	  },
	  successFunction:function(obj,options){
		  jQuery("#msg_qq").attr("class","tips_ok").html("").show();
	  }
});



加载完统一验证:
cv.form.validator.bind(jQuery("#shortTitle"),{
	type:["require"],
	successFunction:function(obj,options){
		_showMsg("#msg_shortTitle","tips_ok","");
	},
	errorFunction:function(obj,options){
		switch(options.type){
			case "require":{
				 _showMsg("#msg_shortTitle","tips_error","信息标题不能为空!");
				break;
			}
		}
	}
});
jQuery("#shortTitle").bind("blur",function(){
	if(jQuery("#shortTitle").val()){
		cv.form.validator(this);
	}
}).bind("focus",function(){
	 _showMsg("#msg_shortTitle","tips_info","请填写信息标题。");
});






cv.form.validator

标签:io   ar   for   sp   cti   html   on   c   htm   

原文地址:http://my.oschina.net/wrean/blog/312372

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!