我不希望用户能够通过单击右上角的默认关闭按钮来关闭fancybox:
$("a#ExporterSujetReponse", context).fancybox({
'onStart': function () {
loadDeverouillerSujetAvecReponse (this) ;
},
'overlayOpacity':0.4,
'overlayColor':'#000000',
'titleShow':false,
'hideOnOverlayClick':false,
'centerOnScroll':true,
'onComplete' : function(){
$.fancybox.resize();
$('#fancybox-content').removeAttr('style').css({ 'height' : $(window).height()-100, 'margin' : '0 auto', 'width' : $(window).width()-150 });
}
});
那么如何使默认关闭按钮不可见?
答案 0 :(得分:1)
使用'showCloseButton':false
$("a#ExporterSujetReponse", context).fancybox({
...
'showCloseButton':false, // add this line to hide close button
....
});