2

有没有办法链接到 Colorbox 中的原始图像?

我有一个可以正常工作的hack,但我想知道是否有其他方法可以做到这一点:

<a href="full_size.jpg" title="<a class='cbox_expand' href='full_size.jpg'>Expand</a>">Photo_1</img>

在此处输入图像描述

4

1 回答 1

3
$('a.example').colorbox({
  title: function() {
    return $('<a>Expand</a>').attr('href', $(this).attr('href'));
  }
});
于 2013-02-07T07:29:20.287 回答