我的数据表可以工作,但是当我单击表的另一页时,它将页面重定向到不存在的“未定义”页面。当我单击页码时,它会短暂显示正确的结果,但随后将其重定向到“未定义”页。
jquery
$('#branchtables').DataTable( {
"pagingType": "full_numbers",
"paging": true,
} );
HTML
<table id = "branchtables" class="table table-borderless table-data3">
<thead>
<tr>
<th>Partner ID</th>
<th>Partner Name</th>
<th>Mobile Number</th>
<th>Parent DSP</th>
</tr>
</thead>
<tbody>
<core:forEach var="data" items="${partners}" varStatus="count" >
<tr id="removetable">
<core:choose>
<core:when test = "${data.parentid eq PID}">
<td id="removetable" class="tablefonts mytablewidth"><a href="managebranches?pid=${data.branchid}">${data.branchid}</a></td>
</core:when>
<core:otherwise>
<td id="removetable" class="tablefonts mytablewidth">${data.branchid}</td>
</core:otherwise>
</core:choose>
<td id="removetable" class="tablefonts mytablewidth">${data.branchname}</td>
<td id="removetable" class="tablefonts mytablewidth">${data.email}</td>
<td id="removetable" class="tablefonts mytablewidth">${data.parentpartner}</td>
</tr>
</core:forEach>
</tbody>
</table>
数据表链接
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.15/css/jquery.dataTables.min.css"/>
<script type="text/javascript"
src="${pageContext.request.contextPath}/resources/js/jquery.dataTables.min.js">
</script>
答案 0 :(得分:0)
该主体具有一个类<body class="animsition">
,我刚刚删除了该类并且它起作用了。 IT似乎引导程序主体无法与数据表一起很好地工作。