我想在不填充文本的情況下使表格不可見。使/在XML/XSL中顯示
這裏是我的XML:
<weitereAnmerkungen>
<table>
<thead>
<tr>
<th>Weitere Anmerkungen</th>
</tr>
</thead>
<tbody>
<tr><td>Gehhilfe, Rollstuhl adhudsha dfuahsf sadfasd fas f asdf asd fas f s sd fsaf as df asd f asd as ghjgfhjgfhjghjgfhjgfhjgfhjghjgfhjghjgfhj ghjf ghj ghj gh gf</td>
</tr>
</tbody>
</table>
</weitereAnmerkungen>
我的XSLT:
<xsl:template match="n1:weitereAnmerkungen">
<xsl:if test="n1:table/n1:tbody/n1:tr/n1:td">
<xsl:apply-templates />
</xsl:if>
</xsl:template>
我的問題是,這也當TD是不是充滿了文字,表格是可見的。但它不應該是可見的!
我希望有人能幫助我!
你試過'測試= 「正常化空間(N1:表/ N1:TBODY/N1:TR/N1:TD)!= ''」' ? –
不 - 非常感謝你,它的工作原理:D THX! – user3497759