0

目标

调用对象内部的同位素。

问题

谷歌浏览器:未捕获的类型错误:对象 [对象对象] 没有方法“同位素”。

编码

var mainResources = {
    // Execute this when the document is ready to go
    whenDocumentReady: function () {
        this.calculateResponsiveMeasures();

        jQuery("ul.products-list").isotope({
            itemSelector: "li",
            masonry: {
                gutterWidth: 15
            }
        });
    }
    [...]
}

我不知道我必须做什么。顺便说一句,提前谢谢。干杯!

4

1 回答 1

1

这里的问题是您的对象在同位素之前被初始化。只需确保在加载对象的文件之前包含 isotope.js 文件。

于 2013-06-06T20:37:54.883 回答