1
我的代碼除了主題說明以外所有的作品都可以用作tablesorter。我已經把這些主題放在了tablesorter js的CSS文件夾中。如果你能幫助我,我感謝你的幫助。這裏是我的代碼:tablesorter主題不起作用
<table id="dtTable" class="table table-bordered table-responsive">
<thead>
<tr>
<th align="center">#</th>
<th>Desc</th>
<th colspan="2" align="center">Action</th>
</tr>
</thead>
<tbody>
<?php $query="SELECT * FROM eth" ; $records_per_page=10; $newquery=$ eth->paging($query,$records_per_page); $eth->dataview($newquery); ?>
<tbody class "do-not-sort tablesorter-no-sort">
<tr>
<td colspan="7" align="center">
<div class="pagination-wrap">
<?php $eth->paginglink($query,$records_per_page); ?></div>
</td>
</tr>
</tbody>
</tbody>
</table>
<script type="text/javascript">
$(function() {
$("#dtTable").tablesorter()
selectorSort: "th, td"
selectorRemove: "tr.do-not-sort"
theme: "jui"
});
</script>
謝謝