我在Firefox的错误控制台中遇到此类错误“$(...)。infinitescroll不是函数” - 这与此站点非常相似:https://github.com/davialexandre/yiinfinite-scroll/issues/3
答案 0 :(得分:1)
更改这些行:
<script type="text/javascript">
$.noConflict();
// Code that uses other library's $ can follow here.
</script>
到这些:
<script type="text/javascript">
var $ = jQuery.noConflict(true);
$.noConflict();
// Code that uses other library's $ can follow here.
</script>
它解决了这个问题。我仍然无法弄清楚原因。