标题中的Fancybox链接

时间:2010-12-16 12:40:40

标签: hyperlink fancybox anchor title

我正在尝试在fancybox单张图片标题中创建一个链接。我希望它将我重定向到另一个内联的fancybox窗口。

我有一个脚本,使整个单个图像成为一个链接,但这是我的文档标题而不是锚标题... 我真的希望有人能够找到解决方案,或者更好地了解如何做到这一点!谢谢!

顺便说一下:我几乎从未用脚本深深地工作过......

$(document).ready(function() {
    $("a.fancybox").attr('rel', 'gallery').fancybox();

    $("a.fancylink").fancybox({
        'title': this.title,
        'titlePosition': 'over',
        'titleFormat': function() {
            return '<span id="fancybox-title-over" style="background: url();"></span>';
        },
        'onComplete': function() {
            goTo = this.title;
            $("#fancybox-title").css({
                'top':'0',
                'bottom':'0'
            }).bind('click', function() {
                $.fancybox.close();
                return document.location.href=goTo;
            });
        }
    });
});

1 个答案:

答案 0 :(得分:7)

<a class="gallery" href="delete/big.png" title="text about the project :: <a href='http://www.someclient.com'>Launch website</a>"><img src="delete/thumb.png" width="115" height="115" alt="" /></a>

$('a.gallery').fancybox({
'titlePosition' : 'inside'
});