使用XSLT

时间:2018-01-17 15:44:10

标签: html xml xslt

这是我目前在XLST中的内容。我想从html中提取117的高度并使用变量而不是XSLT中的值,我想使xslt通用所以它会用Row_VARIABLE替换所有Row_117?

 <!-- Row_117px height -->
<xsl:template name="Row_117" match="xhtml:table[@class='Row_117']">
<table width="600" height="117" border="0" cellpadding="0" cellspacing="0" align="center" class="deviceWidth">
  <tr>
    <td>
     <xsl:text disable-output-escaping="yes">
        <![CDATA[  <!--[if gte mso 9]>
              <table width="600" height="117" align="center">
                 <tr>
                   <td width="300">
        <![endif]--> ]]>
     </xsl:text>
      <xsl:apply-templates select="./*"/>
    </td>
  </tr>
</table>

0 个答案:

没有答案