English | česky | Nederlands | >> Français << | Español | По-русски | Deutsch | 中文 | Italiano | Polski ZVON > Tutorials > XPath Tutorial
>> Exemple 5 << | Précédent | Suivant

Les attributs sont spécifiés par le prefixe @.
 
//@id
Sélectionne tous les attributs id

     <AAA>
          <BBB id = "b1"/>
          <BBB id = "b2"/>
          <BBB name = "bbb"/>
          <BBB/>
     </AAA>
Ouvrez l'exemple dans XLab | vue d'arbre (JPG)
 
//BBB[@id]
Sélectionne tous BBB qui ont un attribut id

     <AAA>
          <BBB id = "b1"/>
          <BBB id = "b2"/>
          <BBB name = "bbb"/>
          <BBB/>
     </AAA>
Ouvrez l'exemple dans XLab | vue d'arbre (JPG)
 
//BBB[@name]
Sélectionne tous BBB qui ont un attribut name

     <AAA>
          <BBB id = "b1"/>
          <BBB id = "b2"/>
          <BBB name = "bbb"/>
          <BBB/>
     </AAA>
Ouvrez l'exemple dans XLab | vue d'arbre (JPG)
 
//BBB[@*]
Sélectionne tous BBB qui ont un attribut

     <AAA>
          <BBB id = "b1"/>
          <BBB id = "b2"/>
          <BBB name = "bbb"/>
          <BBB/>
     </AAA>
Ouvrez l'exemple dans XLab | vue d'arbre (JPG)
 
//BBB[not(@*)]
Sélectionne tous BBB qui n'ont pas d'attribut

     <AAA>
          <BBB id = "b1"/>
          <BBB id = "b2"/>
          <BBB name = "bbb"/>
          <BBB/>
     </AAA>
Ouvrez l'exemple dans XLab | vue d'arbre (JPG)