/ * 编辑 * /
我有一个像这样的3列表,在第一个,3个可编辑的div中有文本插入,在第二个和两个可编辑的div中有文本,如下所示,我想如果我调用我的模板,我必须调用两次得到模板,但是代码改为最后一个机智_1,最后有_2 ......
<xsl:call-template name="my_template">
<xsl:with-param name="code" select="'code_1'"/>
</xsl:call-template>
<xsl:call-template name="my_template">
<xsl:with-param name="code" select="'code_2'"/>
</xsl:call-template>
<table>
<tr>
<xsl:for each select="node/contains(@someCode,'my_value_code_for both_in_this_to_show_text_below_and_divs_')">
<td>
Text1
Text2
Text3
</td>
<td>
<DIV>
<DIV id="webedit" formid="{$id}" max_word_count="{$max_word_count}" comment="Title" width="770" style="background-color:#fff; margin-bottom:3pt;">
<xsl:value-of disable-output-escaping="yes" select="//node[@clientCode='my_div_code']"/>
</DIV>
<DIV id="webedit" formid="{$id}" max_word_count="{$max_word_count}" comment="Title" width="770" style="background-color:#fff; margin-bottom:3pt;">
<xsl:value-of disable-output-escaping="yes" select="//node[@clientCode='my_div_code']"/>
</DIV>
<DIV id="webedit" formid="{$id}" max_word_count="{$max_word_count}" comment="Title" width="770" style="background-color:#fff; margin-bottom:3pt;">
<xsl:value-of disable-output-escaping="yes" select="//node[@clientCode='my_div_code']"/>
</DIV>
</DIV>
</td>
<td>
<div width="100%">Text1:</DIV>
<DIV id="webedit" formid="{$id}" max_word_count="{$max_word_count}" comment="Title" width="770" style="background-color:#fff; margin-bottom:3pt;">
<xsl:value-of disable-output-escaping="yes" select="//node[@clientCode='my_div_code']"/>
</DIV>
<div width="100%">Text1:</DIV>
<DIV id="webedit" formid="{$id}" max_word_count="{$max_word_count}" comment="Title" width="770" style="background-color:#fff; margin-bottom:3pt;">
<xsl:value-of disable-output-escaping="yes" select="//node[@clientCode='my_div_code']"/>
</DIV>
</td>
</tr>
</xsl:for-each>
</table>
希望你明白我的代码和问题,如果不是我会更新它。 再次感谢。