参数列表后缺少")"

1BJ*_*903 0 javascript arguments

我似乎找不到解决这个问题的方法:

 missing ) after argument list
[Break On This Error]   

}});
Run Code Online (Sandbox Code Playgroud)

这是提到的文件:

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';
            });
Run Code Online (Sandbox Code Playgroud)

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

Gra*_*mas 5

该怎么selector: 'article';办?它看起来像你可能要被指定为这个初始化时的选项freetile:

jQuery("#content").freetile({selector: 'article'});
Run Code Online (Sandbox Code Playgroud)