Adding button click event when Fancybox popup opened

元气小坏坏 提交于 2020-01-04 02:56:09

问题


I'm trying to add a button onclick event to a button tag when I load my Fancybox popup using the following code:

var processOrder = function(id) {
    $('#processPopupLink').fancybox({
        'hideOnContentClick': false,
        'frameWidth': 850,
        'frameHeight': 695
    }).click();

    $('#processComplete').click(function() {
        alert('debug');
    });
}

However, it's not showing the message box when I click the button, I have no idea why it is not working, any help would be appreciated.

EDIT

I'm not wanting it to click the button, I'm wishing for it to add an onclick to an existing button on the fancybox popup, when the fancybox popup is opened.


回答1:


From the Fancybox API:

onComplete - Will be called once the content is displayed.

$('#processPopupLink').fancybox({
    onComplete: function() { 
        $('#processComplete').click(function() 
            {
               alert('debug');
            }); 
    }
});


来源:https://stackoverflow.com/questions/2920048/adding-button-click-event-when-fancybox-popup-opened

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!