获取 XML 中的属性值

发布于 2024-10-28 07:44:27 字数 138 浏览 0 评论 0原文

如何使用 xslt 获取以下 xml 中 attribute1(废话)的值:

<name attribute1="blah" attribute2="blahblah">
</name>

How would one get the value of attribute1 (blah) in the following xml using xslt:

<name attribute1="blah" attribute2="blahblah">
</name>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

亚希 2024-11-04 07:44:27

这更像是一个 xpath 问题,但像这样,假设上下文是父元素:

<xsl:value-of select="name/@attribute1" />

This is more of an xpath question, but like this, assuming the context is the parent element:

<xsl:value-of select="name/@attribute1" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文