Fancybox默认关闭按钮 - 关闭按钮功能

时间:2013-03-27 17:21:52

标签: jquery fancybox fancybox-2

当用户点击fancybox 2中的默认关闭按钮时,如何编写函数? 每当我将鼠标悬停在关闭按钮上时,它会在Chrome中显示javascript:;

这是图片Close Button

1 个答案:

答案 0 :(得分:1)

只需将tpl API选项添加到自定义脚本,然后从关闭按钮模板中删除href属性,如:

$(".fancybox").fancybox({
    tpl: {
        closeBtn: '<a title="Close" class="fancybox-item fancybox-close"></a>'
    }
});

参见 JSFIDDLE