隐藏空白单元格 XSLT

发布于 2024-10-30 04:07:15 字数 335 浏览 0 评论 0原文

我有以下输入 XML:

图2 支持 支持 支持

如果 Table 元素的 Class 属性中有任何带有“SPECIALMATERIAL”的列,我需要隐藏 PARTNUMBER 列;其次,我需要在“figure”标记行之后插入一个新行。在这种情况下,新行应该出现在第二个位置。

I have the following input XML:

figure2

Support

Support

Support

I need to hide the PARTNUMBER column if the Table element has any column with "SPECIALMATERIAL" in its Class attribute; Secondly, I need to insert a new row just after the"figure" tag row. In this case new row should come at 2nd position.

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

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

发布评论

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

评论(1

表情可笑 2024-11-06 04:07:15

这是执行此操作的代码(如果我正确理解您的请求):

<xsl:template match="table">
  <xsl:for-each select="row[cell/@class = 'SPECIALMATERIAL']">
    <tr>
    <xsl:for-each select="cell[normalize-space(.)]">
      <th><xsl:value-of select="."/></th>
    </xsl:for-each>
    </tr>    
  </xsl:for-each>
</xsl:template> 

Here is the code that does this (if I understood you request correctly):

<xsl:template match="table">
  <xsl:for-each select="row[cell/@class = 'SPECIALMATERIAL']">
    <tr>
    <xsl:for-each select="cell[normalize-space(.)]">
      <th><xsl:value-of select="."/></th>
    </xsl:for-each>
    </tr>    
  </xsl:for-each>
</xsl:template> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文