使用 AJAX 从 PHP 数组填充表内容
我有一张桌子如下;
<table>
<tr>
<td id="prev">prev</td>
<td class="content"></td>
<td class="content"></td>
<td class="content"></td>
<td class="content"></td>
<td class="content"></td>
<td id="next">next</td>
</tr>
</table>
和一个用于 AJAX 调用的 PHP 文件 ajax.php
;
<?php
$array = array(1,2,3,4,5,6,7,8,9,10);
$page = $_POST["page"];
$quantity = 5;
$offset = ($page-1)*$quantity;
$selectedFiles = array_slice($array, $offset, $quantity);
echo $selectedFiles;
?>
PHP 函数应该返回一个与 $_POST["page"]
相关的元素数量有限的数组,就像分页一样。该脚本将返回 $page = 1
的前 5 个元素,$page = 2
的后 5 个元素,等等。当页面加载时,具有 id
可以分别显示 1、2、3、4 和 5。content
的
当用户点击下一个
时,可能会显示下一个结果,如果用户点击上一个
,可能会返回到上一个结果。我如何使用 JavaScript 和 jQuery 来做到这一点?
如果在用户点击和数据变化时给出一些效果,比如滑动(过渡),这样看起来就像滑动某个栏,那就更有帮助了。
I have a table as below;
<table>
<tr>
<td id="prev">prev</td>
<td class="content"></td>
<td class="content"></td>
<td class="content"></td>
<td class="content"></td>
<td class="content"></td>
<td id="next">next</td>
</tr>
</table>
and a PHP file, ajax.php
for AJAX calls as;
<?php
$array = array(1,2,3,4,5,6,7,8,9,10);
$page = $_POST["page"];
$quantity = 5;
$offset = ($page-1)*$quantity;
$selectedFiles = array_slice($array, $offset, $quantity);
echo $selectedFiles;
?>
The PHP function is suppose to return an array with a limited number of elements with respect to $_POST["page"]
like in pagination. The script will return first 5 elements for $page = 1
, second 5 elements for $page = 2
, etc..etc.. When page loads, the <td>
s having id content
may display 1,2,3,4 and 5 respectively.
When user click next
, it may display next results and may return to previous result if user click prev
. How can I do this using JavaScript using jQuery?
It will be more helpful if some effect is given when user clicks and data changes, like sliding (transition), so that it will look like sliding some bar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为自己节省大量时间。使用预先完成的网格解决方案(例如 DataTables)来为您完成所有这些工作。它允许您对可通过 dom、JSON 或真正的服务器端 AJAX 提供的表结果进行排序、过滤、分页、排序和限制。
由于DataTables是一个如此成熟的项目,它已经克服了跨浏览器怪癖等所有随机问题。
它还包括一个 预先完成的 PHP 示例,其中包含为您完成的查询。只需更改以匹配您的桌子即可,瞧!
Save yourself a TON of time. Use a pre-done grid solution like DataTables that does all this work for you. It allows you to sort, filter, paginate, order, and limit your table results that can be fed via the dom, JSON, or true server-side AJAX.
Since DataTables is such a mature project, it has already overcome all the random issues with cross-browser quirks, etc.
It also includes a pre-done PHP example with the query done for you. Just change to match your table, and voila!
这应该可以帮助您开始:
注意:
This should help you get started:
Notes: