Fancybox afterClose事件发生两次

时间:2014-03-28 01:32:49

标签: javascript jquery fancybox

我对Fancybox 2.1.5有一个非常奇怪的问题。 ' afterClose'在fancybox打开之前和关闭之后都会触发事件。我只希望它在关闭时触发。有没有人见过这样的东西?这是代码:

$(document).ready(function() {
        $(".modal").fancybox({
            'closeBtn' : true,
            'afterClose' : function(){
                console.log('why');
            }
         });   
});

这是一个触发fancybox模态的典型链接,并使用href作为模态的id:

<a class="modal" href="#editName">Edit Name</a>

这是实际的模式:

<div style="display:none" >
    <div class="popop_sec" id="editName">
        {irrelevant stuff here}         
    </div>
</div>

任何人都有任何想法为什么会这样?

0 个答案:

没有答案