如果使用一个脚本,fancybox .tip7
自定义设置是否会与默认$.fn.fancybox
设置冲突,如下所示?似乎自定义.tip7
设置无法覆盖默认设置。为什么呢?
... ...
$.fn.fancybox.defaults = {
titleShow : true,
titlePosition : 'inside',
titleFormat : null,
titleFromAlt : false,
showCloseButton : true,
showNavArrows : false,
enableEscapeButton : true,
enableKeyboardNav : true,
};
... ...
})(jQuery);
$(document).ready(function() {
function formatTitle(title, currentArray, currentIndex, currentOpts) {
return '<div id="tip7-title"><span><a href="javascript:$.fancybox.close()">Close ×</a></span>' + ( title && title.length ? title : '' ) + '</div>';
}
$(".tip7").fancybox({
'showCloseButton' : false,
'titlePosition' : 'inside',
'titleFormat' : formatTitle
});
});