第二次点击时,fancybox不起作用

时间:2012-05-03 11:51:16

标签: fancybox

这是我使用的代码

eventClick: function(event) {
$.fancybox({
                'transitionIn': 'none',
                'transitionOut': 'none',
                'href': event.url,
    });
        return false;
},

............  当我第一次点击它时它在fancybox中打开很好但是当我再次点击它会移动到一个新页面(event.url)。还有使用工具提示并且它在第一次打开fancybox后变为null

1 个答案:

答案 0 :(得分:1)

使用以下代码打开带有网址的Fancybox。它应该工作。

$('a.yourAnchor').fancybox({ 
    'overlayColor': '#fff', 
    'autoDimensions': true, 
    'hideOnContentClick': false, 
    'scrolling': false 
});