我正在尝试在样式表中动态构建 html 表。我目前正在使用递归来构建表,但我需要某种类型的 JavaScript 来控制这些表的存在。这就是表 ID 发挥作用的地方。
这是我的样式表。
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/">
<a href="#" onclick="showtable('test1'); return false;">Hide Table 1</a>
<a href="#" onclick="showtable('test2'); return false;">Hide Table 2</a>
<a href="#" onclick="showtable('test3'); return false;">Hide Table 3</a>
<xsl:call-template name="Recursion">
<xsl:with-param name="Person" select="0"/>
<xsl:with-param name="tableID" select="0"/>
</xsl:call-template>
</xsl:template>
<xsl:template name="Recursion">
<xsl:param name="Person"/>
<xsl:param name="tableID"/>
<xsl:variable name="Count" select="count(//Table1)"/>
<xsl:choose>
<xsl:when test="$Person<$Count">
<xsl:call-template name="NewTable">
<xsl:with-param name="Person" select="$Person"/>
<xsl:with-param name="tableID" select="$tableID+1"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="$Person<$Count">
<xsl:call-template name="Recursion">
<xsl:with-param name="Person" select="$Person+5"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="NewTable">
<xsl:param name="Person"/>
<xsl:param name="tableID"/>
<html>
<head>
<script type="text/javascript">
function showHide(id) {
if (document.getElementById(id).style.display == "none") {
document.getElementById(id).style.display = '';
}
else {
document.getElementById(id).style.display = "none";
}
}
</script>
</head>
<body>
<table id="$tableID" border="5">
<thead>
<xsl:for-each select="/*/*[1]/*">
<th>
<xsl:value-of select="translate(local-name(), '_', ' ')"/>
</th>
</xsl:for-each>
</thead>
<tbody>
<xsl:variable name="Person1" select="$Person+1"/>
<xsl:variable name="Person2" select="$Person+2"/>
<xsl:variable name="Person3" select="$Person+3"/>
<xsl:variable name="Person4" select="$Person+4"/>
<xsl:variable name="Person5" select="$Person+5"/>
<tr>
<xsl:for-each select="/*/*[$Person1]/*">
<xsl:variable name="Attribute" select="position()"/>
<td>
<xsl:value-of select="/*/*[$Person1]/*[$Attribute]"/>
</td>
</xsl:for-each>
</tr>
<tr>
<xsl:for-each select="/*/*[$Person2]/*">
<xsl:variable name="Attribute" select="position()"/>
<td>
<xsl:value-of select="/*/*[$Person2]/*[$Attribute]"/>
</td>
</xsl:for-each>
</tr>
<tr>
<xsl:for-each select="/*/*[$Person3]/*">
<xsl:variable name="Attribute" select="position()"/>
<td>
<xsl:value-of select="/*/*[$Person3]/*[$Attribute]"/>
</td>
</xsl:for-each>
</tr>
<tr>
<xsl:for-each select="/*/*[$Person4]/*">
<xsl:variable name="Attribute" select="position()"/>
<td>
<xsl:value-of select="/*/*[$Person4]/*[$Attribute]"/>
</td>
</xsl:for-each>
</tr>
<tr>
<xsl:for-each select="/*/*[$Person5]/*">
<xsl:variable name="Attribute" select="position()"/>
<td>
<xsl:value-of select="/*/*[$Person5]/*[$Attribute]"/>
</td>
</xsl:for-each>
</tr>
</tbody>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
当我应用样式表时,我得到了正在构建的表的期望结果以及样式表中最多 5 人的数量。唯一让我感到困惑的是将表 ID 设置为唯一的。当前的样式表将表 ID 设置为 $tableID 字面意思。
我的问题是,如何将表 ID 设置为等于变量或至少使每个表 ID 都是唯一的并能够跟踪它,以便可以在表上方的 JavaScript 方法中使用它。
这是输入的 XML 文件。
<?xml version="1.0" encoding="utf-8" ?>
<NewDataSet>
<Table1>
<Run_Date>2013-12-21</Run_Date>
<Run_Time>9:30</Run_Time>
<Date_Ending>2013-12-7</Date_Ending>
<Invoice_Number>00001</Invoice_Number>
<Invoice_Date>2013-12-1</Invoice_Date>
<Due_Date>2013-12-31</Due_Date>
</Table1>
<Table1>
<Run_Date>2013-12-21</Run_Date>
<Run_Time>9:30</Run_Time>
<Date_Ending>2013-12-7</Date_Ending>
<Invoice_Number>00001</Invoice_Number>
<Invoice_Date>2013-12-1</Invoice_Date>
<Due_Date>2013-12-31</Due_Date>
</Table1>
</NewDataSet>
我得到这个输出
<Table id="$tableID" border="5">
但我想要这个输出
<!-- Obviously this is a very dumbed down version of my expected output. I just need the table IDs
increment by one.-->
<Table id="1" border="5">
<Table id="2" border="5">
非常感谢任何输入。如果你愿意,你可以给我一个关于如何让 ID 动态添加到 JavaScript 标记的想法,但我应该能够弄清楚那部分。
提前致谢。