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.
我是 XSLT 的新手,我不知道如何获得一个 xsl:if 在没有子标签的情况下匹配。
我希望这个匹配:
<context> howdy </context>
这不是:
<context> <child> howdy </child> </context>
相关的 xpath 表达式应如下所示:
//context[not(./*)]
您还可以指定 count(child::*) = 0 .
count(child::*) = 0 .