gpt4 book ai didi

XSLT 分页

转载 作者:行者123 更新时间:2023-12-05 01:23:18 24 4
gpt4 key购买 nike

我创建了一个格式化 xml 文档的 xslt 文档,但我希望对 xslt 工作表的结果进行分页。

这是原始的xlst文档

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

<xsl:template match="/">
<xsl:for-each select="musicInformation/musicdetails">
<label for="artistname{position()}" id="artistnameLabel{position()}">Artist Name:</label>
<span id ="artistname{position()}"><xsl:value-of select="artistname" /></span>
<br/>
<label for="recordname{position()}" id="recordnameLabel{position()}">Record Name:</label>
<span id ="recordname{position()}"><xsl:value-of select="recordname" /></span>
<br/>
<label for="recordtype{position()}" id="recordtypeLabel{position()}">Record Type:</label>
<span id ="recordtype{position()}"><xsl:value-of select="recordtype" /></span>
<br/>
<label for="format{position()}" id="formatLabel{position()}">Format:</label>
<span id ="format{position()}"><xsl:value-of select="format" /></span>
<br/>
<a href="xmlDetail.php?mid={@m_id}" >See Details</a>
<br/><br/>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>

最佳答案

有很多方法可以在 XSL 中实现分页。显示了一个基本示例 here .

关于XSLT 分页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2501170/

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