我有一个 xml。在这个 xml 中我有一个名为 video 的节点,如下所示
<product>
<id>676872</id>
<weightingram>510</weightingram>
<volume>0</volume>
<discountgroup />
<name>Product name (500 g)</name>
<vat>10,49</vat>
<webbestprice extra="webbestprice">0</webbestprice>
<webreturn extra="webreturn">0</webreturn>
<weboutdate extra="weboutdate">01-01-2013 00:00:00</weboutdate>
<webaltitem extra="webaltitem" />
<filters extra="filters">
<ISP_WebItem FILTER="Type" FILTERNAME="type" UNITCODE=""/>
<ISP_WebItem FILTER="Type2" FILTERNAME="500" UNITCODE="g"/>
</filters>
<videos extra="videos">
<YoutubeVideoURL RowNumber="33" ProductID="676872" YoutubeUrl="http://www.youtube.com/watch?v=EjoEIHVk9qM" YoutubeImage="https://img.youtube.com/vi/EjoEIHVk9qM/2.jpg"/>
</videos>
</product>
上面的 xml 是通过使用
<textarea>
<xsl:copy-of select="."/>
</textarea>
我需要从此 xml 获取属性 YoutubeUrl 的值。我尝试了类似的方法
<xsl:value-of select="./videos/YoutubeVideoURL[@YoutubeUrl] "/>
但它不起作用。在此先感谢您的帮助。