私は以下のhtmlタグを持っています。私はページにn個のボタンとそれぞれのテーブルを持っています。ページは動的であり、データが供給されるバックエンドごとにデータが増加または減少する可能性があります。ページネーションを実装し、ページあたり2つのボタンとテーブルのみを紹介したいと思います。ユーザーが残りのデータを表示するためにページネーションを使用する必要があることを確認したい場合。jqueryを使用してhtmlでページ番号を作成するには
<html>
<body>
<div id="tab">
<div>
<button type="button" class="button">Source_1</button>
</div>
<div class="logtitude">
<table class="data_table">
<tr>
<th>111</th>
</tr>
<tr>
<td>111</td>
</tr>
</table>
</div>
<div>
<button type="button" class="button">Source_2</button>
</div>
<div class="logtitude">
<table class="data_table">
<tr>
<th>222</th>
</tr>
<tr>
<td>222</td>
</tr>
</table>
</div>
<div>
<button type="button" class="button">Source_3</button>
</div>
<div class="logtitude">
<table class="data_table">
<tr>
<th>333</th>
</tr>
<tr>
<td>333</td>
</tr>
</table>
</div>
</div>
</body>
</html>
誰かが唯一の2 <div>buttons</div>
ページあたりに表示するページネーションを達成するために私を助けることができます。
ページングを作成するためのレディメイドプラグインについては、https://stackoverflow.com/questions/7000048/slickgrid-vs-jqgridおよびhttps://www.slant.co/versus/4837/4840/~jqgrid_vs_datatablesを参照してください。 jqgridは、セルの独自のhtmlを作成するフォーマッターオプションを提供します。 – Anil