我正在使用 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>