解决bootstrap模态框数据缓存的问题方法

前端之家收集整理的这篇文章主要介绍了解决bootstrap模态框数据缓存的问题方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

问题背景

第一步

进行新增验证

第二步

进行修改模态框 验证信息没有消除 且表单数据被缓存

模态框代码:新增修改共用一个模态框

js代码

$(function(){
$("#form1").bootstrapValidator({
FeedbackIcons: {
valid:"glyphicon glyphicon-ok",invalid:"glyphicon glyphicon-remove",validating:"glyphicon glyphicon-refresh"
},fields : {
"unitName" : {

validators : {
notEmpty : {
message : '单位名称不能为空'
}
}
}
}
});
});

//重置表单数据
$(function() {
$("#myModal").on('hide.bs.modal',function() {
//关闭后重置表单数据
$("#form1").data('bootstrapValidator').resetForm();

});

$("#myModal").on('show.bs.modal',function() {
//打开前重置表单数据
$("#form1").data('bootstrapValidator').resetForm();
});
});
function save() {

//保存前开启验证
$("#form1").bootstrapValidator("validate");
if($("#form1").data("bootstrapValidator").isValid()){
$.ajax({
url : "${path}/center/unit/save.action",data : $('#form1').serialize(),type : "post",dataType : "json",beforeSend : function() {
// loading show
},success : function(result) {
if (result.success) {
search();
alert(result.message);

 //<a href="https://www.jb51.cc/tag/guanbi/" target="_blank" class="keywords">关闭</a>模态框

$('#myModal').modal('hide');
} else {
alert(result.message);
}
},complete : function() {
},error : function(data) {
alert("error");
}
});
}}

最终解决效果

以上这篇解决bootstrap模态框数据缓存的问题方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/bootstrap/31073.html

猜你在找的Bootstrap相关文章