How to deal with bootstrap cache

爱喝马黛茶的安东尼
Release: 2019-07-23 13:40:26
Original
2357 people have browsed it

How to deal with bootstrap cache

The first step is to add new verification

How to deal with bootstrap cache

The second step is to modify the modal box verification information is not eliminated and the form data is Cache

How to deal with bootstrap cache

Related recommendations: "bootstrap Getting Started Tutorial"

Modal box code: New modifications share a modal box

<!-- 模态框(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>
Copy after login

js code

//验证设置
 
$(function(){
$("#form1").bootstrapValidator({
feedbackIcons: {
 valid:"glyphicon glyphicon-ok",
 invalid:"glyphicon glyphicon-remove",
 validating:"glyphicon glyphicon-refresh"
 },
fields : {
"unitName" : {
 
validators : {
notEmpty : {
message : &#39;单位名称不能为空&#39;
}
}
}
}
});
});
 
  //重置表单数据
$(function() {
 $("#myModal").on(&#39;hide.bs.modal&#39;,function() {
 //关闭后重置表单数据
 $("#form1").data(&#39;bootstrapValidator&#39;).resetForm();
 
 
 });
  
 $("#myModal").on(&#39;show.bs.modal&#39;,function() {
 //打开前重置表单数据
 $("#form1").data(&#39;bootstrapValidator&#39;).resetForm();
 });
});
function save() {
 
  //保存前开启验证
$("#form1").bootstrapValidator("validate");
if($("#form1").data("bootstrapValidator").isValid()){
$.ajax({
url : "${path}/center/unit/save.action",
data : $(&#39;#form1&#39;).serialize(),
type : "post",
dataType : "json",
beforeSend : function() {
// loading show
},
success : function(result) {
if (result.success) {
search();
alert(result.message);
 
     //关闭模态框
$(&#39;#myModal&#39;).modal(&#39;hide&#39;);
} else {
alert(result.message);
}
},
complete : function() {
},
error : function(data) {
alert("error");
}
});
}}
Copy after login

Final solution effect

How to deal with bootstrap cache

How to deal with bootstrap cache

The above is the detailed content of How to deal with bootstrap cache. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template