Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 xml 文件和一个相关的 xslt 文件。我正在使用 msxsl.exe,我需要将参数作为命令行参数传递并在我的 xslt 文件中使用它。我怎样才能做到这一点???
命令:
msxsl.exe country.xml sheet.xslt -o country_sheet.html p1="india"
如何检索india我的 xslt 文件中的值?
india
试试这个
<xsl:param name="p1" select="p1"/>
这将在任何模板之外,有点像全局变量
是的,那么要使用它的内容,您可以在模板中使用它
<xsl:value-of select="$p1"/>