jquery-plugins – 在单个项目中使用Bootstrap和Fancybox

我在一个项目中使用Bootstrap和Fancybox,包括:

<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="fancybox/jquery.fancybox-1.3.4.pack.js"></script>

这些文件存在并被Chrome收录.

创建Fancybox元素时:

$(document).ready(function() {
    [...]

    jQuery("a.fancy").fancybox({
        'transitionIn'  : 'none',
        'transitionOut' : 'none'    
    });
});

JS抛出一个错误:

Uncaught TypeError: Cannot read property 'msie' of undefined jquery.fancybox-1.3.4.pack.js:18
Uncaught TypeError: Object [object Object] has no method 'fancybox'

(引导功能正常工作)

这是命名空间问题吗?

最佳答案 是否在调用fancybox之前加载了DOM?如果没有试试这个:

$(document).ready(function() {
    $('a.fancy').fancybox({
        'transitionIn'  : 'none',
        'transitionOut' : 'none'
    });
});
点赞