这个 xpath 是什么意思“//Form/*[. =“在”]”

发布于 2024-11-14 05:48:35 字数 498 浏览 4 评论 0原文

我是 xml 相关事物的新手
我无法理解:

SelectNodes(@"//Form/*[. = 'on']");

注意:SelectNodes< /a> 是 XmlNode。(与 XmlDocument)

请告诉我这段代码的含义是什么?

I am newbie in xml related things
I am not able to understand :

SelectNodes(@"//Form/*[. = 'on']");

Note : SelectNodes is a function of XmlNode.(related to XmlDocument)

Please tell me what this code snippet means ?

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

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

发布评论

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

评论(1

兲鉂ぱ嘚淚 2024-11-21 05:48:35

. 表示当前元素节点,无论它是什么。谓词正在检查元素的文本节点以查看它是否是字符串 'on'

因此,XPath 查询会选择 Form 节点的子节点且值为 on 的任何节点。

. means the current element node, whatever it is. The predicate is checking the element's text node to see if it's the string 'on'.

So that XPath query selects any nodes that are children of the Form node and have a value of on.

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