【发布时间】:2015-01-29 01:33:31
【问题描述】:
我正在使用 jquery 分页,但如果里面有其他标签,它就不起作用。
这是我的代码:
<head>
<link href="simplePagination.css" type="text/css" rel="stylesheet"/>
<script src="jquery-1.11.1.min.js"></script>
<script src="jquery.simplePagination.js"></script>
<script>
jQuery(function($) {
var items = $(".content");
var numItems = items.length;
var perPage = 1;
items.slice(perPage).hide();
$("#pagination").pagination({
items: numItems,
itemsOnPage: perPage,
cssStyle: "light-theme",
onPageClick: function(pageNumber) {
var showFrom = perPage * (pageNumber - 1);
var showTo = showFrom + perPage;
items.hide();
items.slice(showFrom, showTo).show();
}
});
});
</script>
</head>
<body>
<div id="pagination"></div>
<p class="content">
<table><tr>Window0</tr></table></p> //this code is working
if it doesn't have the table and
div tag inside, but in my original its mandatory for me to have this table tag and div tag
<p class="content"><div>Window1</div></p>
<p class="content">Window2</p>
<p class="content">Window3</p>
<p class="content">Window4</p>
</body>
分页的所有插件都在这里。https://github.com/flaviusmatis/simplePagination.js
查看我在代码中给出的注释行,有问题。帮我解决这个问题。
【问题讨论】:
-
你想在你的分页
div中有一个table吗?还是table里面的分页div? -
@HugoSousa 我想在分页 div 中有表格
标签: javascript jquery html pagination