1

我正在使用 XSL 根据 Excel 工作表中的值为不同的变量创建特定的 URL。我有一切工作期望我目前必须单击创建的链接以在 iframe 中打开 URL。我希望无需单击即可完成此操作,以便在打开页面时加载链接。这是相关的代码:

<xsl:when test="FieldName[starts-with(., 'UniqueID')]">
 <b>
  <a target="IFRAME">
   <xsl:attribute name="href">
    file:///C:/Users/me/documents/<xsl:value-of select="FieldValue"/>.html
   </xsl:attribute>
  <xsl:value-of select="FieldValue"/>
  </a>
 </b>
</xsl:when>
4

1 回答 1

0

您可以直接创建 iframe:

<xsl:when test="FieldName[starts-with(., 'UniqueID')]">
  <iframe>
    <xsl:attribute name="src">
      file:///C:/Users/me/documents/<xsl:value-of select="FieldValue"/>.html
    </xsl:attribute>
  </iframe>
</xsl:when>
于 2013-08-07T14:14:12.200 回答