在对象内调用同位素。
谷歌浏览器: 未捕获的TypeError:对象[对象]没有方法'同位素'。
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
}
});
}
[...]
}
我不知道自己要做什么。顺便说一句,提前谢谢。干杯!
答案 0 :(得分:1)
这里的问题是你的对象在同位素之前被初始化了。只需确保在加载对象的文件之前包含isotope.js文件。