1
有沒有辦法阻止close
回調中基礎顯示模式的關閉?我已經嘗試了return false;
和e.preventDefault();
,但都沒有任何效果。防止在關閉回調中關閉基礎顯示
HTML:
<div id="my-modal" class="reveal-modal">
I'm a modal!
</div>
JS:
$('#my-modal').on('close', function(e) {
var ok = confirm('Are you sure you want to close this?');
if (! ok) {
e.preventDefault();
return false;
}
}