Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
具有以下xml
<xml> <property href="abc">b</property> <element attr="def">k</element> </xml>
如何使以下 xpath 逐字返回element。
element
*[@attr='def']
就其本身而言,这似乎是一件奇怪的事情,但是使用上面的 xpath 我找不到节点类型本身(只有属性和子节点)。
如果您想要元素节点的名称,请使用name(*[@attr = 'def'])或local-name(*[@attr = 'def'])。
name(*[@attr = 'def'])
local-name(*[@attr = 'def'])