Subject: Re: following vs following-sibling
From: Jeff Kenton <jkenton@xxxxxxxxxxxxx>
Date: Fri, 28 Dec 2001 10:10:34 -0500
|
.. Date: Fri, 28 Dec 2001 08:52:24 -0600
.. From: Yan Zhu <yan.zhu@xxxxxxxxxxxxxxxxxxxxxx>
.. Subject: following vs following-sibling
..
.. Is there a difference between the two? I thought
.. they are the same but:
..
.. I tried:
..
.. <xsl:value-of select="following::url"/>
..
.. which worked, but this:
..
.. <xsl:value-of select="following-sibling::url"/>
..
.. returns nothing while there is a following node, so
.. they do behave differently?
..
following-sibling is a subset of following. following-sibling gets
you only the children of the same parent as the current node; following
gets all those plus their descendents.
--jeff
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|