Javascript 如何使用Jquery弹性网格插件动态绑定图像

Javascript 如何使用Jquery弹性网格插件动态绑定图像,javascript,jquery,elastic-grid,Javascript,Jquery,Elastic Grid,我使用jquery弹性网格插件在缩略图网格中显示图像,并扩展预览。它在绑定静态图像时工作得很好,但在动态附加图像时出现了类似“标记未定义”的错误 有人能帮助解决这个错误吗 示例代码: $("#elastic_grid_demo").elastic_grid({ 'showAllText': 'All', 'filterEffect': 'popup', // moveup, scaleup, fallperspective, fly

我使用jquery弹性网格插件在缩略图网格中显示图像,并扩展预览。它在绑定静态图像时工作得很好,但在动态附加图像时出现了类似“标记未定义”的错误

有人能帮助解决这个错误吗

示例代码:

$("#elastic_grid_demo").elastic_grid({
                'showAllText': 'All',
                'filterEffect': 'popup', // moveup, scaleup, fallperspective, fly, flip, helix , popup
                'hoverDirection': true,
                'hoverDelay': 0,
                'hoverInverse': false,
                'expandingSpeed': 500,
                'expandingHeight': 500,
                'items':
                [
                   {
                    'title': 'ABCD',
                    'description': 'Lorem ipsum dolor sit amet.',
                    'thumbnail': ['/Images/CatalogImage/user_196/148/ThumbImage/myprofile_2014123017329999.png'],
                    'large': ['/Images/CatalogImage/user_196/148/OriginalImage/myprofile_2014123017329822.png'],
                    'button_list':
                    [

                    ],
                    'tags': ['Self Portrait']
                  }
               ]