xsl:attribute 記述例

ソースXML文書

<?xml version="1.0" encoding="Shift_JIS" ?>
<book>
  <title>XMLマスターとは</title>
  <price>2500</price>
</book>

XSLTスタイルシート
<?xml version="1.0" encoding="Shift_JIS" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="/">
    <answer>
      <xsl:element name="data">
        <xsl:attribute name="price">
          <xsl:value-of select="book/price"/>
        </xsl:attribute>
        <xsl:value-of select="book/title" />    
      </xsl:element>
    </answer>
  </xsl:template>
</xsl:stylesheet>

結果XML文書
<?xml version="1.0" encoding="UTF-8"?>
<answer>
  <data price="2500">XMLマスターとは</data>
</answer>
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License