如何将xsl中的变量转化为html的属性
首先定义xsl变量
<xsl:variable name="autoMode" select="item/autoMode"/>
然后进行判断
<tr>
<th width="" nowrap="">自动购买</th>
<td>
<input type="radio" name="autoMode" value="1" onclick="doItDoYouWant(this)">
<xsl:if test="$autoMode=@#1@# ">
<xsl:attribute name="checked">
</xsl:attribute>
</xsl:if>
</input>
</td>
</tr>