Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用简单的 HTML DOM 解析器来尝试获取 alt 属性为 alt="map" 的 img 标签的 href(空格是有意的)。这是我正在使用的代码:
$result = $page->find("img[alt= map]",0)->href;
但是,当预期的匹配在 html 中时,它不会选择它。我哪里错了?
元素没有href属性。你可能想要.imgsrc
href
img
src