DomXPath 查询选择不包含“mailto”的链接

发布于 2024-12-13 11:29:33 字数 496 浏览 0 评论 0原文

我试图获取除包含“mailto”的链接之外的所有链接。我尝试了数百万种不同的方法,但似乎没有任何效果。我最好的尝试是 //a[@href(not(contaıns('maılto')))] 但它也不起作用。我还尝试使用 //a 获取所有链接,然后使用 $domelement->getAttribute('href') 获取所有链接,但它返回 href='mailto:[电子邮件受保护]' 作为 [电子邮件受保护],而不是“mailto”。它会自动剪切“mailto”部分,我不知道为什么。有人有这方面的经验吗?

谢谢。

I tried to get all the links except ones contains 'mailto'. I have tried millions of different things but nothing seems to work. My best attempt was //a[@href(not(contaıns('maılto')))] but it didn't work too. I also tried to get all links with //a and then with $domelement->getAttribute('href') but it returns the href='mailto:[email protected]' as [email protected], not with 'mailto'. It automatically cuts the 'mailto' part I don't know why. Anyone has experience about this?

Thanks.

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

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

发布评论

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

评论(1

我的鱼塘能养鲲 2024-12-20 11:29:33

您使用 not()contains() 的方式是正确的,但是您的语法不正确(另外,我会使用 starts-with()代码> 代替)。

//a[not(starts-with(@href, 'mailto'))]

请参阅http://www.w3.org/TR/xpath/#function-开头为

You were on the right track using not() and contains() however your syntax is incorrect (also, I'd use starts-with() instead).

//a[not(starts-with(@href, 'mailto'))]

See http://www.w3.org/TR/xpath/#function-starts-with

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