I am implement delete row confirmation modal.
我尝试使用“data-backdrop =”static“”,但此操作无济于事
例如:“http://jsfiddle.net/KQXqM/”
如果打开“FG模态”我可以关闭“BG模态”。如何在打开子模态时实现阻止父模态(“BG模态”)。
答案 0 :(得分:0)
如果你说要在子模态打开时阻止父模态关闭,你就会这样......
$('#myModal2').on('show', function() {
$('#myModal').css('opacity', .5);
$('#myModal').unbind();
});
$('#myModal2').on('hidden', function() {
$('#myModal').css('opacity', 1);
$('#myModal').removeData("modal").modal({});
});