模态框避免点击背景处关闭:
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('模态框关闭了'); });
Atas ialah kandungan terperinci bootstrap模态框怎么关闭事件. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!