bro*_*ian 3 jquery fancybox fancybox-2
我正在尝试(使用fancybox 2.0.6)将链接标题('Next','Previous')更改为不同的内容:
beforeLoad: function() {
jQuery('.fancybox-next').each(function() {
var $this = jQuery(this);
$this.attr('title', '????');
});
}
Run Code Online (Sandbox Code Playgroud)
拜托,有什么不对?我试图使用正确的回调吗?别的什么?
谢谢!
以这种方式使用选项更改和链接的title属性nextprevtpl
$("a.fancybox").fancybox({
tpl: {
next: '<a title="Siguiente" class="fancybox-nav fancybox-next"><span></span></a>',
prev: '<a title="Anterior" class="fancybox-nav fancybox-prev"><span></span></a>'
}
}); // fancybox
Run Code Online (Sandbox Code Playgroud)