テンプレートの繰り返しのテスト3
【sample004.xml】
<?xml version="1.0" encoding="Shift_JIS" ?>
<?xml-stylesheet href="sample004.xsl" type="text/xsl"?>
<会社>
<名前>ジャムハウス</名前>
<種類>有限会社</種類>
</会社>
【sample004.xsl】
<?xml version="1.0" encoding="Shift_JIS" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="Shift_JIS" />
<xsl:template match="会社">
<html>
<head><title>テンプレートの繰り返しのテスト3</title></head>
<body>
<h2>テンプレートの繰り返しのテスト3</h2>
<p>会社を発見しました</p>
<p style="color:red;">その値は<xsl:value-of select="." />です</p>
<xsl:apply-templates />
</body>
</html>
</xsl:template>
<xsl:template match="名前">
<p>名前を発見しました</p>
<p style="color:red;">その値は<xsl:value-of select="." />です</p>
</xsl:template>
<xsl:template match="種類">
<p>種類を発見しました</p>
<p style="color:red;">その値は<xsl:value-of select="." />です</p>
</xsl:template>
</xsl:stylesheet>
【結果】
