0
我有一個加載在jQuery colorbox中的屏幕,它工作正常,但問題是它加載的方式看起來不順利。下面的代碼有問題嗎?或者有什麼設置我找不到?jQuery colorbox非常突然加載
$.fn.colorbox({
iframe : true,
width : '90%',
height : '90%',
scrolling : false,
className: 'team-regedit-popup',
href : url + "?" + params+"&projectId=" + projectId,
overlayClose : false,
onClosed : function() {
$(parent.document.getElementById('cboxClose')).show();
var sortId = $('.sortButton.sort_sel').data('sortid');
var searchText = $('#searchText').val();
projectRegistration.displayTeamTable(sortId, searchText);
F.unlock_scroll(self);
}
});
我試過fastIframe: false
但沒有幫助。
謝謝,它的工作。 – VPK