このプラグインを使用して、codeigniter のページネーションに無限スクロールを追加しようとしています。
http://www.infinite-scroll.com
これはこれまでの私のコードです:
<script type = "text/javascript">
$('#comments').infinitescroll({
navSelector : "a#next:last", // selector for the paged navigation (it will be hidden)
nextSelector : "a#next:last", // selector for the NEXT link (to page 2)
itemSelector : "#comments" // selector for all items you'll retrieve
});
</script>
これがデフォルトの使用法です。#comments が私のコンテンツを保持していると仮定しましょう。私のページ分割されたページは次のようになります。
http://localhost/ci/index.php/chat/load/p1u/10
http://localhost/ci/index.php/chat/load/p1u/20
等
このコード行を追加して機能させましたが、成功しませんでした:
<a id="next" href="http://localhost/ci/index.php/chat/load/p1u/10">next page</a>
何か案は?