我似乎找不到解决这个问题的方法:
missing ) after argument list
[Break On This Error]
}});
这是引用的文件:
jQuery(document).ready(function() {
for (i=0;i<40;i++) {
var w = 14 * (parseInt(Math.random() * 3) + 1) - 1,
h = 28 * (parseInt(Math.random() * 3) + 1) - 1;
jQuery('').width(w).height(h).appendTo('article');
}
jQuery('#content').freetile();
selector: 'article';
});
我尝试在最后添加一个荣誉,但它没有用。有人可以帮帮我吗?
答案 0 :(得分:5)
selector: 'article';
应该做什么? 看起来就像您可能希望在初始化freetile
时将其指定为选项:
jQuery("#content").freetile({selector: 'article'});
答案 1 :(得分:3)
你传递了一个格式错误的物体,改为;
$('#content').freetile({
selector: 'article'
});