分页 xml 数据

发布于 2024-09-12 08:34:27 字数 1242 浏览 10 评论 0原文

如何对通过 php.ini 调用的 xml 数据实现分页?我一直在 xml 文件上尝试各种 jquery 分页,但没有成功。

读取 xml 数据的 html/php 代码:

<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>

脚本 [一个示例]:

<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>

how do i implement paging on xml data which is being called through php. i've been trying various jquery pagination on the xml file with no luck.

html/php code reading the xml data:

<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>

script [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>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

渡你暖光 2024-09-19 08:34:27

您需要决定哪些内容将出现在不同的页面上。这完全取决于 xml 文件的内容。我认为您不会找到一个很好的通用解决方案。

You need to decide what's going to be on separate pages. That's entirely dependent on the content of the xml file. I don't think you'll find a great general solution.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文