获取 A 元素的 href 属性:DOM 综合指南
虽然正则表达式对于解析 HTML 来说可能具有挑战性,但 DOM 提供了可靠的解决方案。以下是如何使用 DOM API 检索 href 属性:
加载 HTML
首先,将 HTML 加载到 DOMDocument 中:
$dom = new DOMDocument; $dom->loadHTML($html);
检索 A Elements
接下来,使用 getElementsByTagName() 检索所有 A 元素:
foreach ($dom->getElementsByTagName('a') as $node) { // Do stuff with the A element }
获取 OuterHTML
获取一个 A 元素(包括其内容),使用saveHtml():
echo $dom->saveHtml($node);
获取节点值
要获取 A 元素的文本值,请使用 nodeValue:
echo $node->nodeValue;
检查 href 属性
检查是否href 属性存在,请使用 hasAttribute():
echo $node->hasAttribute('href');
获取 href 属性
要检索 href 属性,请使用 getAttribute():
echo $node->getAttribute('href');
更改 href 属性
至更改 href 属性,请使用 setAttribute():
$node->setAttribute('href', 'something else');
删除 href 属性
要删除 href 属性,请使用removeAttribute():
$node->removeAttribute('href');
href 的 XPath 查询属性
也可以直接使用XPath查询href属性:
$xpath = new DOMXPath($dom); $nodes = $xpath->query('//a/@href');
遍历节点,根据需要进行操作。
其他资源
以上是如何使用 DOM API 获取 A 元素的 `href` 属性?的详细内容。更多信息请关注PHP中文网其他相关文章!