<bookstore>
<book isbn="49314" year="2000" edition="6">
<author firstname="Carole" lastname="Wade" />
<author firstname="Carol" lastname="Tavris" />
<publisher>Prentice Hall</publisher>
<price currency="CAN">110.00</price>
</book>
XSLT:
<xsl:template match="/">
<html>
<body>
<xsl:for-each select="bookstore/book">
Author(s):
<p>Publisher: <xsl:value-of select="publisher"/></p>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
我如何可以顯示兩個authors'names這樣的格式:
作者(S) :Carole,Wade Carol,Tavris
完整的外觀將會是:
本書的名字:心理學
說明:入門級中心理課本
課程適用性:PSYC1101
作者://不能弄明白
出版商:Prentice Hall出版社
價格:110.00
類別:Pschology
副本庫存:10
請幫忙,謝謝!
我不太確定如何對其進行編碼。你能告訴我一個例子嗎?謝謝 – DarrenX