0

我在 Firefox 的错误控制台中收到这种类型的错误“$(...).infinitescroll is not a function” - 这与此站点非常相似:https ://github.com/davialexandre/yiinfinite-scroll/issues/ 3

4

1 回答 1

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>

它解决了这个问题。我仍然无法弄清楚原因。

于 2012-12-04T17:39:19.880 回答