0

我似乎无法找到解决此问题的方法:

 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';
            });

我尝试在最后添加一个荣誉,但它没有用。有人可以帮帮我吗?

4

2 回答 2

5

selector: 'article';应该做什么?看起来您可能希望在初始化时将其指定为选项freetile

jQuery("#content").freetile({selector: 'article'});
于 2012-09-24T15:00:10.370 回答
3

您传递了一个格式错误的对象,更改为;

$('#content').freetile({ 
  selector: 'article' 
});
于 2012-09-24T14:59:37.597 回答