使用fancybox的AJAX内容加载问题

时间:2013-02-07 18:14:48

标签: javascript jquery css ajax fancybox

我正在我的网站click here for plugin上使用jquery插件fancybox click here for site,当您向下滚动到名单部分并点击缩略图时,您会注意到该弹出消息

The requested content cannot be loaded. Please try again later.

我弄清楚是什么导致了这个问题...我在Expression Engine中构建了我的网站,但我假设这不是问题

<a class="various" href="{path='pop-up/music-pop/{url_title}'}">
   <img onmouseover="removeFilter(this)" onmouseout="addFilter(this)" 
        src="{music_thumb}" alt="img" class="roster-music">
</a>

的javascript

$(document).ready(function() {
       $(".various").fancybox({
           minWidth    : 1100,
           maxWidth    : 1600,
           maxHeight   : 1100,
           fitToView   : true,
           width       : '100%',
           type: 'ajax'
        });
});

我正在使用数据类型ajax,这与此问题有关,还是我需要修改?

0 个答案:

没有答案