资 源 简 介
Hpath 1.0
Hpath 1.0 is developed for reading XML with CSS selector. 10/31/2012
Selector:
| Pattern | Meaning |
|:------------|:------------|
| * | Matches any element. |
|, | When several selectors share the same declarations, they may be grouped into a comma-separated list.|
|E |Matches any E element (i.e., an element of type E).|
|E F |Matches any F element that is a descendant of an E element.|
|E>F |Matches any F element that is a child of an element E.|
|E~F |Matches any F elements that are next siblings of an element E.|
|[attribute=value] |Matches any F element that includes attribute is value|
|[!(attribute=value)] |Matches any F element that not includes attribute is value|
|Es:first |Find the first one of Es elements|
|Es:last |Find the last one of Es elements |
|Es:odd |Find the odd ones of Es el