gpt4 book ai didi

javascript - 如何使用 javascript 为动态 html 表引入分页和排序?

转载 作者:行者123 更新时间:2023-11-28 05:15:27 25 4
gpt4 key购买 nike

我的 html 页面包含 ajax,这有助于动态创建表格。

<title>Clients</title>
</head>
<body>
<table style="width:100%" id="clients_data">
<caption>Clients</caption>
<tr>
<th>Clients</th>
<th>Number of Sites</th>
<th>Reset the Processing</th>
</tr>
</table>
<script>
var myTable;

$(document).ready(function () {
loadCustomers();
});


function loadCustomers() {
$.ajax({
type: 'GET',
url: 'http://localhost:8080/cache/getCustomers',
dataType: 'json',
success: function(data) {
var rows = [];
$.each(data,function(id,value) {
rows.push('<tr><td><a href="clientSiteInfo.html?client='+id+'">'+id+'</td><td>'+value+'</td><td><button type="button" onclick="reset(\''+id+'\')">Reset</td></tr>');
});
$('#clients_data').append(rows.join(''));
}
});
};
</script>
</body>
</html>

在运行时,我可能在表中填充了 100 行。我如何添加分页,使用 jquery 对该表进行排序?

最佳答案

这是一个使用 jQuery 的非常基本的示例 each() , index() , toggle() , 和一个 Anonymous function .我正在利用 HTML 5 data-* attributes跟踪我的位置并设置要增加/减少的项目数。

您可以使用插件或编写自己的代码来使分页尽可能简单或复杂。尽管我强烈建议使用 AJAX 来填充您的结果,因为加载 1000 个结果以隐藏/显示可能会降低系统速度。

/* Variable Defaults */
var total = $('tbody > tr').length;
var position = $('tbody').data('position');
var jump = $('tbody').data('jump');
var paginate = function(position, jump) {
/* Show Default Items */
$('tbody > tr').each(function() {
/* Variable Defaults */
var index = $(this).index();

/* Condition */
var condition = (index >= position) && (index < position + jump);

/* Hide/Show Item */
$(this).toggle(condition);

/* Set Disabled Status */
$('.less').prop('disabled', (position - jump) < 0);
$('.more').prop('disabled', (position + jump) >= total);
});
};

/* Set Default Text */
$('.count').text(jump);

/* Init Paginate */
paginate(position, jump);

/* Bind Click Events to "Less" and "More" Button */
$('.less, .more').on('click', function() {
/* Decrease/Increase Position */
position = $(this).hasClass('less') ? $('tbody').data('position') - jump : $('tbody').data('position') + jump;

/* Paginate */
paginate(position, jump);

/* Update Position */
$('tbody').data('position', position);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table>
<thead>
<tr>
<td>ID</td>
<td>Name</td>
<td>Email</td>
</tr>
</thead>
<tbody data-position="0" data-jump="2">
<tr>
<td>1</td>
<td>Test McTester</td>
<td>test@gmail.com</td>
</tr>
<tr>
<td>2</td>
<td>Test McTester</td>
<td>test@gmail.com</td>
</tr>
<tr>
<td>3</td>
<td>Test McTester</td>
<td>test@gmail.com</td>
</tr>
<tr>
<td>4</td>
<td>Test McTester</td>
<td>test@gmail.com</td>
</tr>
<tr>
<td>5</td>
<td>Test McTester</td>
<td>test@gmail.com</td>
</tr>
<tr>
<td>6</td>
<td>Test McTester</td>
<td>test@gmail.com</td>
</tr>
<tr>
<td>7</td>
<td>Test McTester</td>
<td>test@gmail.com</td>
</tr>
<tr>
<td>8</td>
<td>Test McTester</td>
<td>test@gmail.com</td>
</tr>
<tr>
<td>9</td>
<td>Test McTester</td>
<td>test@gmail.com</td>
</tr>
<tr>
<td>10</td>
<td>Test McTester</td>
<td>test@gmail.com</td>
</tr>
</tbody>
</table>

<button class="less">Back <span class="count">0</span></button>
<button class="more">Forwards <span class="count">0</span></button>

关于javascript - 如何使用 javascript 为动态 html 表引入分页和排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46762530/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com