具有以下层次结构:
Parent1
--> child1(@name = 'abc')
--> child2(@name = 'xyz')
--> child3(@name = 'qqq')
Parent2
--> child1
--> child2(@name = 'yui')
XPath返回所需的以下节点:
child1 from Parent1
和
child2 from Parent2
规则如下:仅
返回具有特定属性的第一个出现的子项,在这种情况下@name
注意:
first()
并且[1]
不起作用