如何在通过php调用的xml数据上实现分页。我一直在xml文件上尝试各种jquery分页,但没有运气。
html / php代码读取xml数据:
<div id="display">
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
$xmldoc = new DOMDocument();
if(!file_exists('test.xml')){
echo "Sorry this file does not exists!";
exit();
} else {
$xmldoc->load('test.xml', LIBXML_NOBLANKS);
// Load up the XSL file
$xslDoc = new DomDocument;
$xslDoc->load("test.xsl");
$xsl = new XSLTProcessor;
$xsl->importStyleSheet($xslDoc);
// apply the transformation
echo $xsl->transformToXml($xmldoc);
}
?>
</div>
脚本[one example]:
<script type="text/javascript" src="jquery-1.4.2.js"></script>
<script type="text/javascript" src="paginator.js"></script>
<script type="text/javascript">
$(function(){ $("#display").pagination(); });
</script>
答案 0 :(得分:1)
您需要决定在不同页面上会发生什么。这完全取决于xml文件的内容。我认为你不会找到一个很好的通用解决方案。