模態框避免點擊背景關閉:
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('模态框关闭了'); });
以上是bootstrap模態框怎麼關閉事件的詳細內容。更多資訊請關注PHP中文網其他相關文章!