下面的html动态创建,所以我没有权限更改html:
<div class="entryFooter">Last Edited by Anonymous at 03/11/2011 15:36 </div>
<br>
<table border="0"> </table>
<br>
<table border="0"> </table>
<br>
<script type="text/javascript" language="javascript">
我正在尝试通过http://plugins.jquery.com/project/jquery-pagination中描述的表创建分页但是没有成功。我试过了
$(function(){
itemsPerPage = 3;
paginatorStyle = 2;
paginatorPosition = 'botton';
enableGoToPage = true;
$("table").pagination();
});
但是分页控件会添加到每个表中。当他们没有id或类时,我是否有可能对表格进行分页。
由于
答案 0 :(得分:2)
我不确定这是否是您所需要的,但是,您可以使用“eq selector”之类的内容来查看您在桌面上显示的位置 -
$("table:eq(0)").pagination(); //only applies to first table on page