通缉HTML:
<table>
<thead>
<tr>
<th>1</th>
<th>2</th>
</tr>
</thead>
<tbody>
<tr>
<td>a</td>
<td>b</td>
</tr>
<tr>
<td>
<table>
<tr>
<td>thisWidth</td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
XML:
<row type='header'>
<column width='150'>1</column>
<column>2</column>
<column type='tableintable' />
</row>
<row type='data'>
<column>a</column>
<column>b</column>
<column>thisWidth</column>
</row>
一切都像我想要的那样,我只想在HTML中设置<td>
元素的宽度。这必须是第一个XML标题列的宽度
现在我用这个:
<xsl:attribute name="width"><xsl:value-of select="//row[@type='header']/@width[position() = 1]" /></xsl:attribute>
这不起作用。如何选择所需列的值?
答案 0 :(得分:0)
试试这个XPath表达式
<xsl:attribute name="width">
<xsl:value-of select="//row[@type='header']/column[position() = 1]/@width" />
</xsl:attribute>