简短问题:
我想选择所有不匹配属性的节点(@type!=’x’),而属性不存在(??)。
目前,我没有任何回报,因为其他节点根本没有任何属性。
原文链接:https://www.f2er.com/xml/293503.html我想选择所有不匹配属性的节点(@type!=’x’),而属性不存在(??)。
目前,我没有任何回报,因为其他节点根本没有任何属性。
背景:
我有一些XML请注意,有一个type =“feature”,但所有其他的没有’type’attr。
<image type="feature"><description>X</description><url>media/designer_glass_tile_04.jpg</url><height></height><width/></image> <image><description>Designer Glass 05</description><url>media/designer_glass_tile_05.jpg</url><height></height><width/></image> <image><description>Designer Glass 06</description><url>media/designer_glass_tile_06.jpg</url><height></height><width/></image> <image><description>Designer Glass 07</description><url>media/designer_glass_tile_07.jpg</url><height></height><width/></image> <image><description>Designer Glass 08</description><url>media/designer_glass_tile_08.jpg</url><height></height><width/></image>
和XSL风格:
<div id="gallery"> <div id="feature" > <xsl:apply-templates select="image[@type='feature']"/> </div> <div id="thumbs"> <xsl:apply-templates select="image[@type!='feature']"/> </div> </div>
谢谢你的时间