0

Firefoxのエラーコンソールでこのタイプのエラー「$(...)。infinitescrollは関数ではありません」が表示されます。これは次のサイトに非常によく似ています: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 に答える