gpt4 book ai didi

jquery - Fancybox v2 覆盖/格式标题

转载 作者:行者123 更新时间:2023-12-01 04:23:46 25 4
gpt4 key购买 nike

如何覆盖新版本 fancy box 中的标题?

$(document).ready(function() {
$(".photogalleryLightbox li a").fancybox({
helpers:{
title: {
type: 'inside',
beforeShow: function(opts)
{
console.log('beforeShow title helper');
},
},
buttons : {}
},
beforeShow: function()
{
console.log('beforeShow');
// var obj = $(currentArray[currentIndex]); // from prev. version
// if (obj.next().length) return obj.next().html(); // from prev. version
}
});
});

我尝试过这个,但不知道如何获取变量作为索引。

最佳答案

您可以使用回调来更新标题,例如:

$(".photogalleryLightbox li a").fancybox({
beforeLoad : function() {
this.title = 'My Custom Title';
},
helpers: {
title: {
type: 'inside',
beforeShow: function(opts) {
console.log('beforeShow title helper');
},
},
buttons : {}
},
beforeShow: function() {
console.log('beforeShow');
// var obj = $(currentArray[currentIndex]); // from prev. version
// if (obj.next().length) return obj.next().html(); // from prev. version
}
});

关于jquery - Fancybox v2 覆盖/格式标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8225416/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com