xpath查找不包含子节点的节点

发布于 2024-10-26 20:31:38 字数 346 浏览 1 评论 0原文

我正在尝试创建一些 xpath 来查找所有不包含 img 标签的 a 标签,以便某些内容

<a href="http://aol.com">link</a>

匹配,但

<a href="http://yahoo.com"><img src="http://yahoo.com/logo.png"></a>

不包含。

当然,我可以通过两部分搜索来完成此操作,但我确信必须有某种方法可以使用 xpath 来完成此操作。

I'm trying to create some xpath that will find all a tags that do not contain img tags, so that something such as

<a href="http://aol.com">link</a>

matches, but

<a href="http://yahoo.com"><img src="http://yahoo.com/logo.png"></a>

does not.

Of course I could do this in a two-part search but I'm sure there must be some way to do this with xpath.

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

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

发布评论

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

评论(1

司马昭之心 2024-11-02 20:31:38
//a[not(img)]

不过,如果可以的话,尽量避免使用 // 。另请注意,这只会排除直接包含imga

//a[not(img)]

Try and avoid the // if you can, though. Also note this will only exclude as that directly contain imgs.

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