大家好,又见面了,我是全栈君。
一、页面概况
二、问题点
- 点击modal “关闭”按钮后,父modal“关闭”按钮失效
- 点击modal 右上角“X”后,父modal会一同关闭
三、解决方法
-
重写子modal的hide 触发事件 hide.bs.modal
// modal所在的html 的<body>标签前面加上 $(function(){ $('#myModal').on('hide.bs.modal', function (e) { $("#myModal .modal-body").empty(); }); });
-
子modal “关闭”按钮和右上角“X” 点击都添加onclick方法
<!-- modal 右上角的“X” 添加onclick触发事件的方法 --> <div class="modal fade" id="myModal" tabindex="-1" data-backdrop="static" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog modal-lg" role="document" style="width:80%"> <div class="modal-content <div class="modal-header"> <button type="button" class="close" onclick="calloff()" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title" id="myModalLabel">标题</h4> </div> <div class="modal-body" id="myModalBody"></div> </div> </div> </div>
//onclick 方法的具体实现,右上角的“X”和“关闭”按钮均调用这个 calloff:function(){ $("#myModal").modal("hide"); }
-
父modal一般方式实现即可
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/120873.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...