拥有以下xml文件:
<?xml version='1.0' encoding='UTF-8'?><id ext="1" root="2" />
如何使用xslt转换获取扩展和root的值?
答案 0 :(得分:0)
这应该有效。将模板与XML文档的根关联
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxml="urn:schemas-microsoft-com:xslt" xmlns:random="http://www.microsoft.com/msxsl">
<xsl:template match="/">
<xsl:value-of select="id/@ext" />
<xsl:value-of select="id/@root" />
</xsl:stylesheet>