我正在为标题使用缩略图“alt”属性。
$(".fancybox").fancybox({
beforeShow : function() {
var alt = this.element.find('img').attr('alt');
this.inner.find('img').attr('alt', alt);
this.title = alt;
}
});
但这在我想使用“over”样式作为标题时不起作用。
$(".fancybox").fancybox({
helpers : {
title: {
type: 'over'
}
}
});
当我出于某种原因想一起使用它们时,它不起作用。