我正在使用 colorbox 1.3 版并使用以下代码调用 colorbox
$(".extractImages").colorbox({
ajax:true,
speed:100,
initialWidth:'110px',
initialHeight:'85px',
rel:'popup',
fixed:true,
arrowKey:false,
href:function(){
return $(this).attr('popup');
},
onLoad: function() {
$('#cboxClose').html('');
$('#cboxCurrent').remove();
$('#cboxNext').remove();
$('#cboxPrevious').remove();
$('#cboxTitle').remove();
},
onComplete : function() {
$('#cboxClose').html('<img class="popupClose" src="/public/images/close.png"/>');
$.fn.colorbox.resize();
}
});
如您所见,我已在完成时调用了 resize 方法,但它给了我以下错误
TypeError: $.fn.colorbox is undefined
[Break On This Error]
$.fn.colorbox.resize();
我还尝试了以下方法:
TypeError: $(".extractImages").colorbox is undefined
[Break On This Error]
$('.extractImages').colorbox.resize();