

模态框避免点击背景处关闭:
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事件时不关闭。
});