我已在我的解决方案中实施了Magnific Popup,我正在使用Bootbox来确认用户是否要关闭窗口而不保存更改等。
我将自定义函数连接到关闭回调,但它无法按预期工作。
$('#divThumbnails').magnificPopup({
delegate: 'a',
type: 'inline',
midClick: true,
callbacks: {
close: function () {
var confirm = bootbox.confirm('Are you sure?', function(result) {
});
if (confirm)
return true;
else
return false;
}
}
});
这只是一个快速的样本,而不是生产代码。 if-else语句在那里,因为否则Bootbox对话框无法显示(通常不需要检查返回的值,因为它作为参数传递,在本例中称为结果)。
问题是,在我点击关闭按钮后,我的图像(弹出窗口的内容)消失了。我想有机会取消关闭操作并实现我需要在关闭弹出窗口之前触发的事件。
这是否可以通过Magnific Popup实现?
答案 0 :(得分:20)
// this part overrides "close" method in MagnificPopup object
$.magnificPopup.instance.close = function () {
if (!confirm("Are you sure?")) {
return;
}
// "proto" variable holds MagnificPopup class prototype
// The above change that we did to instance is not applied to the prototype,
// which allows us to call parent method:
$.magnificPopup.proto.close.call(this);
};
答案 1 :(得分:0)
此代码仅覆盖当前打开的弹出窗口!如果你在关闭后打开相同的弹出窗口,这个回调就会消失!
$.magnificPopup.instance.st.callbacks.close=function(){
// your code here
// this actually close popup
$.magnificPopup.proto.close.call(this);
};