在fancy box的div上调用函数点击

时间:2015-06-22 10:12:55

标签: javascript jquery html fancybox

我想在点击fancybox popup的title of title属性时调用一个函数。

我的代码如下:

$("a[rel=example_group]").fancybox({
    'titlePosition'     : 'over',
    'cyclic'    : 'true',
    'padding'   : '0px',
    'nextEffect'    :   'fade',
    'prevEffect'    :   'fade',
    'titleShow'    :   'false',
    'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
        return '<span id="fancybox_popup"><span class="popup_title"> ' + title + '</span><span class="popup_options"><a class="fancy_detail_opt" href="#" ><div class="icon icon-plus-1"></div></a></span></span>';
    }
});

我想隐藏显示(toogle)&#34; popup_title&#34; div点击&#34; fancy_detail_opt&#34;格。

对此有任何建议。

0 个答案:

没有答案