fancyBox 2:格式化标题

Mar*_*arc 1 jquery fancybox

对于fancyBox 1.x,有一个如何格式化标题的信息.我错过了这个新版本......

我想添加一个标题,如"x的图像1.你可以在这里找到孔库[= link]"

JFK*_*JFK 7

对于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
Run Code Online (Sandbox Code Playgroud)