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.
<xsl: when test="not(descendant::*[SomeAttribute])">
これは、コンテキストノードに子要素を持つ子孫がないかどうかを確認することを意味しますSomeAttributeか?
SomeAttribute
はい。ブール値として設定されたノードは、セットが空の場合はfalseであり、空でない場合はtrueであるため、コンテキストノードにSomeAttributeツリーの少なくとも2レベル下の子孫(孫、曽孫など)がある場合、テストは失敗します。 。)。コンテキストノードにSomeAttribute 子はあるが、より深い子孫がない場合、または子孫がまったくないSomeAttribute場合、テストは成功します。