-2

我试图通过单击表中的元素来弄清楚如何使用 xml 文件上的 xslt 转换来更改 html 页面。我环顾四周,找不到答案,这是一个简单的代码,我想知道如何更改页面并显示一些内容:我认为您没有必要阅读代码,除了最后一个,XSLT。我已经添加了代码的其他部分,以防它们也需要一些更改。

XSD:

 <?xml version="1.0" encoding="UTF-8"?>
 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.w3schools.com"
 xmlns="http://www.w3schools.com">

 <xs:element name="Table">
 <xs:complexType>
 <xs:sequence maxOccurs="unbounded">
 <xs:element ref="Person"/>
 </xs:sequence>
 </xs:complexType>
 </xs:element>
 <xs:element name="Person">
 <xs:complexType>
 <xs:all maxOccurs="1">
 <xs:element ref="Name"/>
 <xs:element minOccurs="1" ref="Age"/>
 </xs:all>
 </xs:complexType>
</xs:element>
<xs:element name="Name">
 <xs:complexType>
 <xs:sequence>
 <xs:element maxOccurs="1" ref="theName"/>
 <xs:element maxOccurs="1" ref="Description"/>
 </xs:sequence>
 </xs:complexType>
 </xs:element>
 <xs:element name="theName" type="xs:string"/>
 <xs:element name="Description" type="xs:string"/>
 <xs:element abstract="false" name="Age" type="xs:positiveInteger"/>
 </xs:schema>

所以我创建了两个元素,theName 和 age。名称由字符串 TheName 和字符串描述组成。年龄只是一个正整数。现在我创建了一个 XML 文件,它只选择了两个不同的人:

XML:

 <?xml version="1.0" encoding="UTF-8"?>
 <?xml-stylesheet type="text/xsl" href="try.xsl"?>
 <Table xmlns="http://www.w3schools.com"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://www.w3schools.com try.xsd">
 <Person>
 <Name>
 <theName>Thomas</theName>
 <Description>He is a nice guy</Description>
 </Name>
 <Age>10</Age>
 </Person>

 <Person>
 <Name>
 <theName>Peter</theName>
 <Description>He is good at swimming</Description>
 </Name>
 <Age>12</Age>
 </Person>

 </Table>

我现在的转变是做一个表格,上面有年龄函数的人的名字:

XSLT:

 <?xml version="1.0" encoding="UTF-8"?>

 <xsl:stylesheet

 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:ws="http://www.w3schools.com"
 version="1.0"> 

 <xsl:template match="/">
 <html>

 <table border="2">
 <tr bgcolor="red">
 <th>Name</th>
 <th>Age</th>
 </tr>
 <xsl:for-each select="ws:Table/ws:Person">
 <tr>

 <td><xsl:value-of select="ws:Name/ws:theName"/></td>
 <td><xsl:value-of select="ws:Age"/></td>

 </tr>
 </xsl:for-each>
 </table>

这是我需要帮助的地方,如果我单击此人的姓名,如何显示此人的描述。所以基本上,如果我点击 Thomas,我想显示“他是个好人”,如果我点击 Peter,我想显示“他是个游泳好手”。

 </html>
 </xsl:template>
 </xsl:stylesheet>

谢谢

4

1 回答 1

0

XSLT 脚本将生成一个文本文件,在本例中是一个 HTML(Web)页面,而该文件又将由另一个应用程序(Web 浏览器)解释。有关如何创建具有流畅交互的动态网页的信息,请查看CSSJavaScript教程。

于 2012-04-21T16:00:33.660 回答