可以,如下的JS程式:
$(function(){
$('#dfMaster').on('hide.bs.modal', function(e) { // DataForm關閉時執行
if($(this).data('isApply')){ // 判斷 isApply是否為True
e.preventDefault(); //取消關閉DataForm的動作
$(this).removeData('isApply'); // 再把isApply變數清除
}
});
})
function dfMaster_onApply()
{
$(this).data('isApply', true); //存檔前設定 isApply變數為True
return true;
}