2

我知道undefined is not a function错误的含义,但我不明白为什么它会出现在这里。

我刚刚下载了最后一个 Masonry 版本并尝试按照文档进行操作。(http://desandro.github.io/masonry/docs/methods.html

布局工作正常,但似乎我根本无法使用任何masonry()功能。我的电话总是undefined is not a function出错。masonry()

由于布局工作正常,我假设砌体脚本工作正常,那么为什么我不能masonry(...)在没有这个未定义函数错误的情况下使用?

(我搜索了从 Masonry v2 到 Masonry v3 的变化,但没有找到与此功能相关的任何内容)

部分 HTML 代码:

<a class="navbar-brand" id ="test-masonry" href="#">...</a>

<div id="masonry-container" class="js-masonry" data-masonry-options='{ "columnWidth": 330, "itemSelector": ".item" }'>
    <div class="item">
        <button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#createNewBlock">Create a new block</button> 
    </div>
</div>

<!-- Freshly downloaded from the official Masonry website -->
<script src="js/masonry.pkgd.min.js"></script> 

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.18/angular.min.js"></script>
<script src="js/app.js"></script>
<script src="js/controllers/appCtrl.js"></script>

<!--  Copied from the example in the docs -->
<script>
$(function(){
    var $container = $('#masonry-container');
    $('#test-masonry').click(function(){
        var $boxes = $('<div>Test !</div>');
        $container.prepend( $boxes ).masonry( 'reload' );
    });
});
</script>
4

1 回答 1

10

您在 jQuery 之前加载 Masonry,因此您得到undefined. 当包括砌体时,它会检查是否加载了 jQuery。如果是,它会将 Masonry 属性设置为 jQuery 对象:$.fn.masonry。所以当你在 jQuery 之前加载 Masonry 时,你不能使用jQObject.masonry().

布局工作正常,因为 Masonry 不需要 jQuery 工作

于 2014-07-23T14:01:56.537 回答