我正在使用Magnific Popup上传图片。当用户单击或按下关闭按钮时,我想得到用户的确认是否关闭。
这是我的 Javascript:
$('#upload').magnificPopup({
type:'inline',
callbacks: {
close: function(){
if( confirm("Are you sure you want to close?") ) {
return true;
}
return false;
}
}
}
});
但它不起作用。