我正面臨一個問題,fancybox加載。 我有以下頁面佈局: fancybox不工作在div標記
我寫的代碼,包括jquery.fancybox-1.2.6.js
和browse.php
文件以及CSS爲的fancybox jquery.fancybox-1.2.6.css
(建議我,如果我已經包含在錯誤的文件,而不是explorer.php
)
$(".view_details").fancybox({
'overlayOpacity' : 0.1,
'showCloseButton' : true,
'frameHeight' : 250,
'frameWidth' : 300,
'hideOnContentClick':false,
'centerOnScroll' : false
});
,現在browse.php
每當用戶點擊DIV 1
窗格中的鏈接時加載。
在browse.php
我一個鏈接調用的fancybox,
<a class="view_details" href="file.php?par=1" >View Details </a>
但它不能正常工作,有時它在第一次打開,然後開始顯示錯誤TypeError: loading is undefined
。 請在這種情況下幫助我。
在此先感謝。