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.
我想在没有孩子满足某些条件时找到父母,例如找到那些在其子级别中没有项目的部分。XPath 可以吗?
Well//section[not(item)]找到所有section没有任何子item元素的元素或//section[not(descendant::item)]找到所有section没有任何后代元素的item元素。那是你要找的吗?如果没有,请考虑显示一个 XML 输入示例,并更详细地说明您要查找的元素。
//section[not(item)]
section
item
//section[not(descendant::item)]