表单无法重置验证,只能够清空数据,望大神帮我看下。
function vailiedForm(){
$('form:first').bootstrapValidator({
feedbackIcons : {
valid : 'glyphicon glyphicon-ok',
invalid : 'glyphicon glyphicon-remove',
validating : 'glyphicon glyphicon-refresh'
},
fields : {
'user.username' : {
message : '用户名验证失败',
validators : {
notEmpty : {
message : '用户名不能为空'
},
}
},
'user.password' : {
validators : {
notEmpty : {
message : '密码不能为空'
},
}
},
'user.name' : {
validators : {
notEmpty : {
message : '真实姓名不能为空'
},
}
}
},
submitHandler : function(validator, form, submitButton) {
$.ajax({
url : '${contextPath}/view/sbadmin1/addUser',
type : 'POST',//post方式提交
data : form.serialize(),
success : function(data) {
if (data.message == 'success') {
closeModal();
} else {
alert('添加失败!');
}
},
error : function() {
alert('提交无响应,无法解析json');
}
});
}
});
}
$('form:first').bootstrapValidator({
feedbackIcons : {
valid : 'glyphicon glyphicon-ok',
invalid : 'glyphicon glyphicon-remove',
validating : 'glyphicon glyphicon-refresh'
},
fields : {
'user.username' : {
message : '用户名验证失败',
validators : {
notEmpty : {
message : '用户名不能为空'
},
}
},
'user.password' : {
validators : {
notEmpty : {
message : '密码不能为空'
},
}
},
'user.name' : {
validators : {
notEmpty : {
message : '真实姓名不能为空'
},
}
}
},
submitHandler : function(validator, form, submitButton) {
$.ajax({
url : '${contextPath}/view/sbadmin1/addUser',
type : 'POST',//post方式提交
data : form.serialize(),
success : function(data) {
if (data.message == 'success') {
closeModal();
} else {
alert('添加失败!');
}
},
error : function() {
alert('提交无响应,无法解析json');
}
});
}
});
}
function reset (){
$('form:first').data('bootstrapValidator').resetForm();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
给reset按钮加个onclick 用js清除这些验证提示
毫无诚意的提问方式