我尝试了几种使用AJAX(jQuery)技术对来自ashx处理程序(ASPX处理程序)的div进行分页的方法。处理程序位于C#,.ashx文件中,但返回的数据是html。
但我无法完成。我想知道algorithem或一些技术来做到这一点。
我已尝试过本网站中存在的几种解决方案,但所有这些解决方案都不适用于我。
我想为每个页面分页8个div。
示例:
//Page 1
<div class="productArea">
<div class="product" id="one1"></div> ... <div class="product" id="eight1"></div>
</div>
然后分页并传递到其他页面
//Page 2
<div class="productArea">
<div class="product" id="one2"></div> ... <div class="product" id="eight2"></div>
</div>