如何在xslt中调用javascript/c#函数传递xpath选择值。下面是我如何调用带有手动类型参数的函数:
<xsl:value-of select="cs:my('some text')"/>
这是一个来自MSXML 4 SDK的例子(这对于MSXML 6应该是相同的,并且对于。net的XslCompiledTransform非常相似—对于后者搜索MSDN为<msxsl:script>
)
Example这个例子定义了一个带有命名空间的脚本块用户的前缀,包含一个名为XML的函数,该函数接受Node-list作为参数。稍后,这个函数,xml(nodelist)中的用户命名空间,从。
的select属性调用XML文件(customers.xml)
<?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="script.xsl" ?> <customers> <customer> <name>John Smith</name> <address>123 Elm St.</address> <phone>(123) 456-7890</phone> </customer> <customer> <name>Mary Jones</name> <address>456 Oak Ave.</address> <phone>(156) 789-0123</phone> </customer> </customers>
XSLT文件(script.xsl)
<?xml version='1.0'?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:user="http://mycompany.com/mynamespace"> <msxsl:script language="JScript" implements-prefix="user"> function xml(nodelist) { return nodelist.nextNode().xml; } </msxsl:script> <xsl:template match="/"> <xsl:value-of select="user:xml(.)"/> </xsl:template> </xsl:stylesheet>
格式化输出
<?xml version="1.0" encoding="UTF-16"?><?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="script.xsl" ?>
<customers>
<customer>
<name>John Smith</name>
<address>123 Elm St.</address>
<phone>(123) 456-7890</phone>
</customer>
<customer>
<name>Mary Jones</name>
<address>456 Oak Ave.</address>
<phone>(156) 789-0123</phone>
</customer>
</customers>