gpt4 book ai didi

php - 简单的 html dom : how get a tag without certain attribute

转载 作者:可可西里 更新时间:2023-11-01 13:50:57 26 4
gpt4 key购买 nike

我想获得“class”属性等于“someclass”的标签,但只有那些没有定义属性“id”的标签。

我尝试了以下(基于这个答案)但没有成功:

$html->find('.someclass[id!=*]');

注意:

我正在使用 Simple HTML DOM class在他们提供的基本文档中,我没有找到我需要的东西。

最佳答案

来自PHP Simple HTML DOM Parser Manual , 在 How to find HTML elements? 下,我们可以读到:

[!attribute] Matches elements that don't have the specified attribute.

您的代码将变为:

$html->find('.someclass[!id]');

这将匹配具有 someClass 类但没有 id 属性的元素。


我最初的答案是基于元素的选择,就像我们使用 jQuery 一样,因为简单 HTML DOM 解析器声称在其 main page 上支持它们。我们可以在哪里阅读:

Find tags on an HTML page with selectors just like jQuery.

对于那些被我原来的回答冒犯到并在评论中表示不满的人,我深表歉意!

关于php - 简单的 html dom : how get a tag without certain attribute,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10505243/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com