关于XSL调用JS脚本的问题?????
<?xml version="1.0" encoding="UTF-8"?><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:user="http://www.haha.com/"> <xsl:template match="/"> <html> <body> <xsl:apply-templates select="//designSpec"/> </body> </html> </xsl:template> <xsl:template match="//designSpec"> <strong>MAN B&W DIESEL A/S</strong><br/> <strong>RDER NO.:</strong><xsl:value-of select="user:GetSystemTime()"/> <strong> CUST.ID:DALIAN</strong><br/><br/><br/> </xsl:template> <msxsl:script language = "JScript" implements-prefix="user"> function GetSystemTime() { return "aaa"; } </msxsl:script></xsl:stylesheet>