我正在尝试将下面的xml转换为xslt:
<object>
<content type="me">myname</content>
<content type="you">yourname</content>
<content type="me">myothername</content>
</object>
这是我写的xslt,条件是属性值必须是'me',节点内容的值必须是'myname',但它不会返回任何内容。有什么不对?
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:value-of select="object/content[@type='me' and text()='myname']"/>
</xsl:template>
</xsl:stylesheet>