本文主要是介绍cannot call methods on masonry prior to initialization; attempted to call method 'appended' 瀑布流,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用瀑布流代码是出现的问题。在火狐的firebug中。
cannot call methods on masonry prior to initialization; attempted to call method 'appended'
找到解决问题,需要在使用的时候,初始化一次,代码。
错误用法:
$('#itemshere').masonry( 'appended', $boxes );
正常用法
$('#itemshere')// initialize Masonry.masonry()// now okay to use methods.masonry( 'appended', $boxes );
这篇关于cannot call methods on masonry prior to initialization; attempted to call method 'appended' 瀑布流的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!