0
我目前有Zend分頁工作完全正常,我正在嘗試整合Paul Irish的無限滾動插件,但據我所知,插件完全沒有區別。頁面控件仍然顯示在頁面的底部,當我向下滾動時沒有任何反應。下面是我的javascript:無限滾動插件無所作爲
$('#grid').infinitescroll({
navSelector : "div#paginationControl",
nextSelector : "#next",
itemSelector : "#grid div.entry",
debug : true,
bufferPx : 200
});
我的分頁控件,應該正確設置幾乎直接從Zend的文檔
<?php if ($this->pageCount): ?>
<div class="paginationControl" id="paginationControl">
<!-- Previous page link -->
<?php if (isset($this->previous)): ?>
<a href="<?php echo $this->url(array('page' => $this->previous)); ?>" id="previous">
< Previous
</a> |
<?php else: ?>
<span class="disabled">< Previous</span> |
<?php endif; ?>
<!-- Numbered page links -->
<?php foreach ($this->pagesInRange as $page): ?>
<?php if ($page != $this->current): ?>
<a href="<?php echo $this->url(array('page' => $page)); ?>">
<?php echo $page; ?>
</a> |
<?php else: ?>
<?php echo $page; ?> |
<?php endif; ?>
<?php endforeach; ?>
<!-- Next page link -->
<?php if (isset($this->next)): ?>
<a href="<?php echo $this->url(array('page' => $this->next)); ?>" id="next">
Next >
</a>
<?php else: ?>
<span class="disabled">Next ></span>
<?php endif; ?>
</div>
<?php endif; ?>
就當作我可以告訴一切;網格是包含項目列表的容器,項目是每個項目的類別,我在腳本之前包含插件。我在控制檯中沒有收到任何javascript錯誤,但該插件沒有任何影響。我可能做錯了什麼?
我們可以有你的網頁演示。它將幫助我們看到HTML和JS並解決問題。 – user1269989 2012-07-21 15:52:40
你可以在這裏看到它的行動http://completeset.us/organizer – jaimerump 2012-07-21 15:53:35
你必須給分頁nextSelector:「a#next:last」進入你的jquery初始化。試着看無限滾動頁面上的演示,它會給你更多的想法。 – user1269989 2012-07-21 16:03:30