我遇到困難引用的所有3 我已經寫了我的XML,XSD和XSL,但它似乎並沒有與參考工作。 以下是使用相同參考的簡單示例。XML XSL XSD驗證:
XSD:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.w3schools.com"
xmlns="http://www.w3schools.com"
elementFormDefault="qualified">
<xs:element name="email">
<xs:complexType>
<xs:sequence>
<xs:element name="to" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
XML:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="email.xsl"?>
<email
xmlns="http://www.w3schools.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3schools.com email.xsd">
<to>John</to>
</email>
XSL:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<html>
<body>
<xsl:for-each select="email">
<h2>To</h2>
<td><xsl:value-of select="John"/></td>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
那麼問題是什麼?我沒看到一個。問題是什麼?沒有什麼被描述爲有問題的。 – 2012-03-31 15:15:47