This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: how can check whether an attribute exists or not?



> <xsl:when test="@href=''">

That tests if the string value is empty, which is true if there isn't an
attribute or of it s explictly empty.


<xsl:when test="@href">

would test if there is an attribute at all. (Becuae @href selects the
node set of href attributes, and empty nodes sets count as false in a
boolean test)

David

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]