时间:2021-05-18
问题背景
第一步进行新增验证
第二步进行修改模态框 验证信息没有消除 且表单数据被缓存
模态框代码:新增修改共用一个模态框
<!-- 模态框(Modal) --><div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"><div class="modal-dialog"><div class="modal-content"><div class="modal-header"><button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button><h4 class="modal-title" id="myModalLabel">标题</h4></div><div class="modal-body"><form id="form1" class="form-horizontal" role="form"><input type="hidden" id="unitId" name="unitId"/><div class="form-group"><label class="control-label col-sm-2" for="">单位名称</label><div class="col-sm-8"><input type="text" class="form-control" id="unitName" name="unitName"></div></div></form></div><div class="modal-footer"><button type="button" class="btn btn-default" data-dismiss="modal" >关闭</button><button type="button" class="btn btn-primary" onclick="save()">提交</button></div></div><!-- /.modal-content --></div><!-- /.modal --></div>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); //关闭模态框$('#myModal').modal('hide');} else {alert(result.message);}},complete : function() {},error : function(data) {alert("error");}});}}最终解决效果
以上这篇解决bootstrap模态框数据缓存的问题方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例为大家分享了BootStrap模态框不垂直居中的解决方法,供大家参考,具体内容如下解决问题:BootStrap自带的模态框不垂直居中解决方案:调用Boo
小编主要从网上整理了网友提出来的关于bootstrap模态框消失的不同问题,希望对大家有帮助。状况一:bootstrap模态框瞬间消失解决bootstrap模态
//Bootstrap模态框(局部) 名称 原价 /***查看数据详情*@黑眼诗人*/functionorderDe
项目上有一个需求,需要在已经弹出的一个bootstrap模态框的基础上再弹一个模态框。因为bootstrap官方不建议这么做,最后实现的过程属实不易。以下是解决
模态弹出框依赖于Bootstrap提供的js文件,可以单独引入modal.js,也可以直接引入bootstrap.js。模态弹出框的结构Bootstrap框架中