好的,所以我到目前为止创建了多个表。
<xsl:for-each select="report/issue">
<table id="@name" class="idwb sortable">
<tr>
<th class="center">Filename</th>
<th class="center">Level</th>
<th class="center">GID</th>
<th class="center">Message</th>
<th class="center">XPath</th>
<th class="center">Line Number</th>
<th class="center">Help</th>
</tr>
<!--xsl:sort select="@filename" order="descending" data-type="text" /-->
<tr onmouseover="this.style.backgroundColor='#f5f6be';"
onmouseout="this.style.backgroundColor= '';">
<xsl:attribute name="class">alt_0</xsl:attribute>
<td class="center">
<a href="{@infocenterURL}"><xsl:value-of select="@filename" /></a>
</td>
<td align="center">
<xsl:value-of select="@level" />
</td>
<td align="center">
<xsl:value-of select="@gid" />
</td>
<td align="center">
<xsl:value-of select="@message" />
</td>
<td align="center">
<xsl:value-of select="@xpath" />
</td>
<td align="center">
<xsl:value-of select="@linenum" />
</td>
<td alight="center">
<a href="{@helplink}">More</a>
</td>
</tr>
</table>
<br />
<br />
</xsl:for-each>
没有什么可以让这个世界炙手可热。问题是这会为每个条目创建一个表,但我想只为每个文件名和级别创建表,并且有关该文件名和级别的所有条目都将在那里。目前有没有使用javascript吗?
XML示例
<issue filename="file.html"
gid="506"
helplink="www.somewhere.com"
infocenterURL="www.somewhere.com"
level="Potential Violation"
linenum="49"
message="stuff nneeds to happen"
xpath="/html/body/div[3]/img"/>
我需要做的是,对于每个文件名,我需要一个包含所有问题的表,这些问题匹配相同的文件名和相同的违规级别。违规级别固定为5,我知道所有这些。但文件名是动态的。
答案 0 :(得分:0)
如果你想为每个报告做“(而不是每个问题的”),那么说<xsl:for-each select="report/issue">
是行不通的
但我也有其他一些评论:
:hover
伪类,它就是为此目的而创建的。:nth-child(odd)
和:nth-child(even)
。<xsl:for-each>
。使用模板匹配。您可以通过这种方式获得更多模块化,嵌套程度更低的代码,使用模板不需要滚动多个屏幕来查看它们正在做什么。<thead>
和<tbody>
是一个好主意。align="center"
还是class="center"
。 牢记这一点......
<xsl:template match="/">
<xsl:apply-templates select="report" />
</xsl:template>
<!-- <report> becomes <table>... -->
<xsl:template match="report">
<table id="@name" class="idwb sortable">
<thead>
<tr>
<th class="center">Filename</th>
<th class="center">Level</th>
<th class="center">GID</th>
<th class="center">Message</th>
<th class="center">XPath</th>
<th class="center">Line Number</th>
<th class="center">Help</th>
</tr>
</thead>
<tbody>
<xsl:apply-templates select="issue">
<xsl:sort select="@filename" order="descending" data-type="text" />
</xsl:apply-templates>
</tbody>
</table>
</xsl:template>
<!-- <issue> becomes <tr>... -->
<xsl:template match="issue">
<tr class="alt_0">
<td class="center"><a href="{@infocenterURL}"><xsl:value-of select="@filename" /></a></td>
<td class="center"><xsl:value-of select="@level" /></td>
<td class="center"><xsl:value-of select="@gid" /></td>
<td class="center"><xsl:value-of select="@message" /></td>
<td class="center"><xsl:value-of select="@xpath" /></td>
<td class="center"><xsl:value-of select="@linenum" /></td>
<td class="center"><a href="{@helplink}">More</a></td>
</tr>
</xsl:template>