FreeWall选择器

时间:2014-11-09 11:49:05

标签: jquery selector

我试图在我开发的Freewall代码的选择器部分添加多个ID,但是我遇到了一些错误,我不知道正确的做法是什么它。这是我的代码:

<script type="text/javascript">
    var wall = new freewall("#freewall");
    wall.reset({
        selector: '.boxWrap', '.boxWrap2',
        animate: true,
        cellW: 330,
        cellH: 'auto',
        onResize: function() {
            wall.fitWidth(
            );
        }
    });
    wall.container.find('.boxWrap img').load(function() {
        wall.fitWidth();
    });
</script>

1 个答案:

答案 0 :(得分:0)

选择器选项不支持多个字符串,您应该只使用一个这样的字符串:

selector:'.boxWrap, .boxWrap2' <-- single string

总结:

    var wall = new freewall("#freewall");
    wall.reset({
        selector: '.boxWrap, .boxWrap2',
        animate: true,
        cellW: 330,
        cellH: 'auto',
        onResize:function(){
            wall.fitWidth();
        }
    });
    wall.container.find('.boxWrap img').load(function() {
        wall.fitWidth();
    });