获取兄弟/姐妹节点的值
假设在一个页面上我有很多这样的重复:
<div class="entry">
<h4>Magic:</h4>
<a>Edit</a>
<a>Delete</a>
</div>
但是 h4
的 nodeValue
没有重复。如何根据h4
标签的nodeValue
获取a
的nodeValue
?获取 h4 的姐妹 a
节点的内容,其中 h4 内容为 Magic:
。
Let's say on a page I have alot of this repeated:
<div class="entry">
<h4>Magic:</h4>
<a>Edit</a>
<a>Delete</a>
</div>
But the nodeValue
of h4
is not repeated. How do I get the nodeValue
of the a
based on the h4
tag's nodeValue
? Get content of the sister a
nodes of h4 where h4 content is Magic:
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用此 XPath:
它选择
h4
的第一个st同级a
元素,其值为Magic:
。Use this XPath:
It selects 1st following-sibling
a
element ofh4
with valueMagic:
.