我正在使用Magnific Popup。
单击页面关闭弹出窗口上的任意位置时,我想关闭弹出窗口。
这是我的代码小提琴:
http://jsfiddle.net/qweWa/24/
代码:
$('.popup-modal').magnificPopup({
type: 'inline',
modal: true,
});
$(document).on('click', '.closePopup', function (e)
{
e.preventDefault();
$.magnificPopup.close();
});
最佳答案
稍作调整,检查小提琴:)
$('。popup-modal')。magnificPopup({
type: 'inline',
modal: false,
});
> $(document).on('click', '.closePopup', function (e)
> {
> e.preventDefault();
> $.magnificPopup.close();
> });
http://jsfiddle.net/qweWa/27/
关于javascript - 页面上任意位置的Onclick关闭弹出窗口-Magnific Popup,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21926755/