Fancybox设置冲突?

时间:2012-02-07 20:15:09

标签: javascript jquery fancybox

如果使用一个脚本,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 &#215;</a></span>' + ( title && title.length ? title : '' ) + '</div>';
}

$(".tip7").fancybox({
'showCloseButton'   : false,
'titlePosition'     : 'inside',
'titleFormat'       : formatTitle
});

});

0 个答案:

没有答案