Xpath选择所有子节点
我需要从此 html 选择所有子节点(选项标签):
<select name="akt-miest" id="onoffaci">
<option value="a_0">Všetci</option>
<option value="a_1">Iba prihlásení</option>
<option value="a_5" selected="selected">Teraz na Pokeci</option>
<optgroup label="Hlavné miestnosti">
<option value="m_13"> Bez záväzkov</option>
<option value="m_9"> Do pohody</option>
<option value="m_39"> Dámsky klub</option>
</optgroup>
我使用 Html 敏捷包。
我尝试这样做:
var selectNode = htmlDoc.GetElementbyId("onoffaci");
var nodes = selectNode.SelectNodes("option::*");
但我收到 xpath 具有无效令牌的错误。什么是坏事?
例如:
<option value="**a_0**">**Všetci**</option>
我需要获取值 (a_0) 和文本 Všetci。
所以我尝试首先访问通过 Id 选择:
I need select all child nodes (option tag) from this html:
<select name="akt-miest" id="onoffaci">
<option value="a_0">Všetci</option>
<option value="a_1">Iba prihlásení</option>
<option value="a_5" selected="selected">Teraz na Pokeci</option>
<optgroup label="Hlavné miestnosti">
<option value="m_13"> Bez záväzkov</option>
<option value="m_9"> Do pohody</option>
<option value="m_39"> Dámsky klub</option>
</optgroup>
I use Html agility pack.
I try this:
var selectNode = htmlDoc.GetElementbyId("onoffaci");
var nodes = selectNode.SelectNodes("option::*");
but I get error that xpath has invalid token. What is bad?
For example:
<option value="**a_0**">**Všetci**</option>
I need get value (a_0) and text Všetci.
So I try first access to select by Id:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
明显的问题是使用
option::*
option::*
表示:“option”轴上的所有节点。但是,没有“XPath 中的选项轴”您想要:
这会选择作为当前节点子级的所有
option
元素。您可以将其写入单个 XPath 表达式,并省略
getElementbyId()
调用:使用:
这会选择所有
值
XML 文档中所有select
元素的子元素option
元素的属性,这些元素的id
属性值为'onoffaci '
以及作为 XML 文档中具有id
的所有select
元素子级的所有option
元素的所有文本节点值为'onoffaci'
的属性。您需要迭代结果以获得每个
option
元素的@value
和text()
。或者:
在这里,您观察到您感兴趣的
option
元素是其父元素的第一个option
子元素 - 现在仅选择value
属性和所需option
元素的文本节点。The obvious problem is the use of
option::*
option::*
means: All nodes in the "option" axis. However there is no "option axis in XPath"You want:
This selects all
option
elements that are children of the current node.You can write this in a single XPath expression and omit the
getElementbyId()
call:Use:
This selects all
value
attributes of alloption
elements that are children of allselect
elements in the XML document that have anid
attribute with value'onoffaci'
and also all text nodes of alloption
elements that are children of allselect
elements in the XML document that have anid
attribute with value'onoffaci'
.You will need to iterate the results to get the
@value
andtext()
for eachoption
element.Or:
Here you use the observation that the
option
element you are interested in is the firstoption
child of its parent — now this selects only thevalue
attribute and the text nodes of the wantedoption
element.