前端之家收集整理的这篇文章主要介绍了
按属性名称选择xml节点,忽略该属性的名称空间,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个这样的节点:
<Meta name="og:description" content="Here's the content" />
我希望能够选择此元素,如果名称是“描述”,无论它是否在命名空间中.我需要能够选择元标记,如果它的名称是“og:description”,“description”,“blah:description”等.
我已经看到了xpath的资源,它展示了如何在命名空间中进行选择,但不管命名空间如何.
使用XPath 2你可以做到:
/Meta[ends-with(@name,'description')]
对于XPath 1,我们需要:
/Meta['description' = substring(@name,string-length(@name) - string-length('description') + 1)]
原文链接:https://www.f2er.com/xml/292459.html