如何将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>

posted on 2006-05-07 16:41  破茧化蝶  阅读(432)  评论(0编辑  收藏  举报

导航