有没有办法链接到Colorbox中的原始图像?
我有一个工作正常的黑客,但我想知道是否还有其他方法可以做到这一点:
<a href="full_size.jpg" title="<a class='cbox_expand' href='full_size.jpg'>Expand</a>">Photo_1</img>
答案 0 :(得分:3)
$('a.example').colorbox({
title: function() {
return $('<a>Expand</a>').attr('href', $(this).attr('href'));
}
});