背景:
1:资料修改页面;
2:邮箱不能重复
修改页面,邮箱默认带出,但字段上带有remote验证,不能重复,焦点由邮箱输入框失去时,会默认触发remote验证,
介绍完毕
解决方案:
当邮箱无变化时,不主动触发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 } } }
时间: 2024-10-10 13:45:57