方法如下
$(‘#myModal‘).modal({backdrop: ‘static‘, keyboard: false});
这样就可以了,
backdrop
为 static
时,点击模态对话框的外部区域不会将其关闭。
keyboard
为 false
时,按下 Esc
键不会关闭 Modal。
时间: 2024-10-07 11:08:59
$(‘#myModal‘).modal({backdrop: ‘static‘, keyboard: false});
这样就可以了,
backdrop
为 static
时,点击模态对话框的外部区域不会将其关闭。
keyboard
为 false
时,按下 Esc
键不会关闭 Modal。