Subject: Re: Getting name of and element
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 16 Nov 2001 12:30:17 GMT
|
> Well, the problem is that I actually have code that tries to do this like:
> <xsl:template match="/">
> XXX<xsl:value-of select="name"/>YYY <br/>
that selects the string value of an element <name>, or more likely it
selects the empty string being the string value of the empty mode set.
If you eant the name function you need select="name()" but then you will
get the name of the root node which is empty.
If you want the name of the child element of the root node you want
name(*)
> By the way, is there a diffrence between
> <xsl:template match="/"> that I use and
> <xsl:template match="/*"> that you use?
Didn't we just go through that?
/ matches the root node
/* matches any child elements of the root node.
David
_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
- RE: Getting name of and element, (continued)
- Chris Bayes - Fri, 16 Nov 2001 06:27:36 -0500 (EST)
- Michael Kay - Fri, 16 Nov 2001 08:47:13 -0500 (EST)
- Ragulf Pickaxe - Fri, 16 Nov 2001 06:24:43 -0500 (EST)
- Ragulf Pickaxe - Fri, 16 Nov 2001 07:11:34 -0500 (EST)
- David Carlisle - Fri, 16 Nov 2001 07:32:06 -0500 (EST) <=
- Chris Bayes - Fri, 16 Nov 2001 07:46:00 -0500 (EST)
- Ragulf Pickaxe - Fri, 16 Nov 2001 08:05:38 -0500 (EST)
- cutlass - Fri, 16 Nov 2001 08:15:28 -0500 (EST)
- Chris Bayes - Fri, 16 Nov 2001 08:39:54 -0500 (EST)
|
|