我試圖阻止用戶關閉模式而不按關閉按鈕(通常情況下,您可以輕敲模式,它將關閉),但是我可以從不關閉,但關閉按鈕仍然不起作用!:防止關閉模式
$('#manageRooms').on('hide.bs.modal', function (e) {
$('#manageClose').click(function (event) { //Have they pressed the close button?
$(this).data('clicked', 'yes');
}
);
if (!data) return e.preventDefault(); // stops modal from being hidden
})
你正在使用哪個插件? – Bala
bootstrap www.getbootstrap.com –