0

我的fancybox 只需单击即可正常工作。它不适用于双击(我需要双击)。它会打开我单击的链接,但不会打开完整的图库。

这将成功打开图库:

$('.fancybox').click(function() {
    $.fancybox.open($(this).attr('href'));
});

不幸的是,这没有,只打开我单击的特定图像:

$('.fancybox').click(function() {
    return false;
}).dblclick(function() {
    $.fancybox.open($(this).attr('href'));
});
4

1 回答 1

-1

This should work, you need to stop the default behaviour of the "a" tag

$(document).ready(function () {
    $('.fancybox').click(function (e) {
        e.preventDefault();
    }).dblclick(function (e) {
        $.fancybox.open($(this).attr('href'));
        e.preventDefault();
    });
});
于 2013-08-22T08:29:09.407 回答