輸入XML:如何檢查根元素在xml中使用xslt有一個特定的子元素?
<body>
<ce:sections>
<ce:section>
<ce:label>1</ce:label>
<ce:section-title>Introduction and main results</ce:section-title>
<ce:para> The existence of a globally hyperbolic Lorentzian metric on a
<mml:math>(3 + 1)</mml:math>
-spacetime with closed Cauchy surface excludes all but one differentiable structure on the underlying manifold, as observed by ChernovNemirovski
<citegroup>[
<cite>
<no>CN13</no>
<id>CN</id>
</cite>
]</citegroup>
</ce:para>
</ce:section>
</ce:sections>
</body>
如何檢查<mml:math>
.... </mml:math>
和<citegroup>
... </citegroup>
使用body/ce:section/ce:sections
路徑的輸入XML子元素的XSLT?
如何使用xslt獲得<mml: math>
的路徑?
在本例中,它們不是'ce:section'的_child_元素。它們是'section'元素的_descendants_,而'para'的_children_。 – 2014-09-12 12:12:50
我同意它不是一個孩子的元素。它是ce:section的後裔。我想知道如何獲得mml:math的路徑,以及如何檢查它是否是ce:section的後代? – Anitha 2014-09-12 12:16:49