English 中文(简体)
我如何在全球处理Close的花箱事件?
原标题:How do I globally handle onClose event of fancybox?

我正在使用 Fancybox 来处理我的应用程序。 现在来处理我们写的东西类似 :

$(".fancybox").fancybox({onClose:function(){alert( blah );}}

可见于此文档页面:

http://fancyapapps.com/fancybox/#docs>>http://fancyapapps.com/fancybox/#docs

然而,我想写一些普通的和全球性的, 给每时每刻都会运行的所有花瓶。 我该怎么做? 简言之, 我不想在每个花瓶上写上“ 关闭” 的代码, 也不希望它依赖类, id (例如, 此处的 < code>. fancybox ) 。 我该怎么做? 我试着写 :

$.fancybox({onClose:function(){alert( blah );}}

但它不起作用,从医生看,它看起来像是 一种功能,用来开张预言式的。

最佳回答

我不确定这是否是最好的解决方案 但我会去一个酒吧/子模式 所以,在你的花瓶里,你应该做类似的事情。

$( ".fancybox" ).fancybox( {
    onClose: function () {
        $( window ).trigger(  fancyboxClosed  );
    }
} );

然后,在你的代码中某处:

$( window ).on(  fancyboxClosed , function () {
    // Your global function for fancybox closed
} );

我不太了解你的目的 但是要记住 你总是能通过一个命名的功能 而不是匿名的功能 这样你总是能触发同样的功能

以上的例子应该是,如果你想根据每个花瓶的不同做出不同的事情,应该如何去做。

另外,您可以将事件附加到任何您想要的物件上。只是为方便而使用窗口 。

< 强力 > 编辑 < /强 >

您也可以编辑您的花哨箱源来做到这一点( 1.3.4 编辑) 只需添加 < code>$( windowow) 。 trigger( 花瓶关闭 ) ; 到第 953 行周围 。

问题回答

尝试使用方法

关闭前或关闭后

这本守则的工作罚款

$(".fancybox").fancybox({beforeClose:function(){alert( blah );}}

From what I see, Fancybox is not providing any API for that. You can instead use a hack. The lightbox is closed when:

  1. close button is clicked (div with class fancybox-close )
  2. black background is clicked (div with class fancybox-overlay )
  3. escape button is pressed (e.which = 27)

所以, 您可以在身体上添加点击处理器, 检查事件是否发生。 目标是否为. fancybox- close 或. fancybox- overlay 。 另在文档中添加一个按键调控器, 以在按下逃出键时监听 。

这是1.3.4的体面解决办法。

$(document).delegate( #fancybox-close,#fancybox-overlay , click ,function(){
    FancyBoxClosed(); 
});
$(document).keyup(function(e){
    if(e.keyCode == 27){
        if($( #fancybox-overlay ).css( display ) !=  none )
            FancyBoxClosed();
    }
});

function FancyBoxClosed()
{
    //global callback for fancybox closed
}

用于1.3.4以外的版本, 双倍地检查方略框元素选择器, 以使用、 萤火虫或其他方式选择重叠和关闭按钮 。





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签