您的位置:跳跳熊 > bootstrap模态框怎么关闭事件

bootstrap模态框怎么关闭事件

2023-06-30 06:30 bootstrap 模态框 关闭事件

bootstrap模态框怎么关闭事件

模态框避免点击背景处关闭:

1、div初始化时添加属性 aria-hidden=”true” data-backdrop=”static”

<div class="modal fade" id="edit" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden='true' 
data-backdrop='static'>

2、在需要显示模态框,初始化时

$(‘#myModal').modal({
backdrop: ‘static',
//点击背景空白处不被关闭;
keyboard: false
//触发键盘esc事件时不关闭。
});

相关推荐:《bootstrap入门教程》

自定义模态框显示和关闭触发事件:

$(".classname").click(function () {
  $('#mymodel').modal('show');
   alert('模态框打开了');
 });
 
$('#mymodel').on('hide.bs.modal', function () {
  alert('模态框关闭了');
});

qq.jpg

作者:爱喝马黛茶的安东尼

阅读全文
以上是跳跳熊为你收集整理的 bootstrap模态框怎么关闭事件全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 跳跳熊 tiaotiaoxiong.com 版权所有 联系我们
桂ICP备19012293号-25 Powered by CMS