码迷,mamicode.com
首页 > Web开发 > 详细

jquery validation remote depends 验证触发条件

时间:2014-10-20 00:57:16      阅读:638      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   sp   2014   on   cti   

背景:

1:资料修改页面;

2:邮箱不能重复


修改页面,邮箱默认带出,但字段上带有remote验证,不能重复,焦点由邮箱输入框失去时,会默认触发remote验证,


介绍完毕


bubuko.com,布布扣



解决方案:

当邮箱无变化时,不主动触发remote验证;


翻了github上插件的的issues,看到一篇https://github.com/jzaefferer/jquery-validation/issues/431,大神们提供了完美的方案,

email:{
						required : true,
						email : true,
						maxlength : 100,
						remote : {
							depends : function(element) {
				                return element.value !== "${client.email}";
				            },
							param : {
								url : "${ctx}/account/checkEmail",
								cache :false
							}
						}
					}



jquery validation remote depends 验证触发条件

标签:style   blog   http   io   ar   sp   2014   on   cti   

原文地址:http://blog.csdn.net/sunshine_bean/article/details/40276311

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