链接到Colorbox中的完整尺寸图像

时间:2013-02-06 20:50:54

标签: jquery colorbox

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

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

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

enter image description here

1 个答案:

答案 0 :(得分:3)

$('a.example').colorbox({
  title: function() {
    return $('<a>Expand</a>').attr('href', $(this).attr('href'));
  }
});