Please visit our sponsors !
The <xsl:element> Element
Definition and Usage
The <xsl:element> element is used to create an element node in the output
document.
Note: This element may have NON-standard behavior in IE 5.X!
Syntax
<xsl:element
name="name"
namespace="URI"
use-attribute-sets="namelist">
<!-- Content:template -->
</xsl:element>
|
Attributes
Attribute |
Value |
Description |
name |
name |
Required. Specifies the name of the element to be created
(the value of the name attribute can be set to an expression that is
computed at run-time, like this: <xsl:element name="{$country}" /> |
namespace |
URI |
Optional. Specifies the namespace URI of the element (the
value of the namespace attribute can be set to an expression that is
computed at run-time, like this: <xsl:element name="{$country}"
namespace="{$someuri}"/> |
use-attribute-sets |
namelist |
Optional. A white space separated list of attribute-sets
containing attributes to be added to the element |
Example 1
Create a "singer" element that contains the value of each artist element:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:for-each select="catalog/cd">
<xsl:element name="singer">
<xsl:value-of select="artist" />
</xsl:element>
<br />
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
|
If you have Netscape 6 or IE 5 or higher you can view
the XML file and
the XSL file
View the result in IE 6 or
Netscape 6
View the result in IE 5
Jump to: Top of Page
or HOME or
Printer friendly page
Search W3Schools:
What Others Say About Us
Does the world know about us? Check out these places:
Dogpile
Alta Vista
MSN
Google
Excite
Lycos
Yahoo
Ask Jeeves
We Help You For Free. You Can Help Us!
W3Schools is for training only. We do not warrant its correctness or its fitness for use.
The risk of using it remains entirely with the user. While using this site, you agree to have read and accepted our
terms of use and
privacy policy.
Copyright 1999-2002 by Refsnes Data. All Rights Reserved
|