对于fancyBox 1.x,有一个关于如何格式化标题的信息。我错过了这个新版本...
我想添加一个标题,例如“x 的图像 1。您可以在此处找到孔库 [=link]”
对于fancybox v2.0.x,您可以title
使用以下beforeShow
选项自定义/格式化:
$(".fancybox").fancybox({
beforeShow : function() {
this.title = (this.title ? '' + this.title + '' : '') + 'Image ' + (this.index + 1) + ' of ' + this.group.length + '. You can find the whole gallery <a href="/parth/to/gallery">here</a>';
}
}); // fancybox