2
我試圖阻止引導-3模式在沒有警告的情況下關閉,當對模式內的窗體進行更改時。但是,當我聽到模態觸發的事件並返回false時,它將阻止模態永遠關閉。這裏是我的代碼:當窗體發生變化時阻止引導-3模式關閉
$(function() {
$('body').live('shown.bs.modal', '#quickbutton-create', function() {
$(this).find('#quickbutton-create form').monitor();
});
$('body').live('hide.bs.modal', '#quickbutton-create', function() {
if ($(this).find('#quickbutton-create form').monitor('has_changed')) {
if (!confirm('Are you sure?')) {
return false;
}
}
});
});
所以簡而言之,在這種情況下,我如何防止模式關閉一次。