如何将类设置为特定块内的所有文本节点父项

问题描述 投票:1回答:2

我需要在我的页面上的特定块内的每个文本节点的父级设置一个类。

这是我正在尝试做的事情:

$pageHTML = '<html><head></head>
<body>

<header>
  <div>
    <nav>Menu</nav>
    <span>Another text</span>
  </div>
</header>

<section>Section</section>
<footer>Footer</footer>
</body>
</html>';

$dom = new DOMDocument;
libxml_use_internal_errors(true);
$dom->loadHTML($pageHTML);
libxml_use_internal_errors(false);

foreach($dom->getElementsByTagName('body')[0]->childNodes as $bodyChild) {

    if($bodyChild->nodeName == 'header') {

        $blockDoc = new DOMDocument();
        $blockDoc->appendChild($blockDoc->importNode($bodyChild, true));
        $xpath = new DOMXpath($blockDoc);

        foreach($xpath->query('//text()') as $textnode) {
            if(preg_match('/\S/', $textnode->nodeValue)) { // exclude non-characters
                 $textnode->parentNode->setAttribute('class','my_class');
            }
        }
    }
}

echo $dom->saveHTML((new \DOMXPath($dom))->query('/')->item(0));

我需要用<nav>获得<span>内的<header>my_class,但我没有得到。

据我所知,我需要在将类更改为DOM后将更改后的父级返回给DOM,但我该怎么做?

php domdocument
2个回答
1
投票

好的,我自己找到了答案:

...
$xpath = new DOMXpath($dom);

foreach($dom->getElementsByTagName('body')[0]->childNodes as $bodyChild) {

    if($bodyChild->nodeName == 'header') {

        foreach($xpath->query('.//text()', $bodyChild) as $textnode) {

            if(preg_match('/\S/', $textnode->nodeValue)) { // exclude non-characters
                $textnode->parentNode->setAttribute('class','my_class');
            }
        }
    }
}

0
投票

尝试此代码,您必须使用getElementsByTagName而不是按文本节点检查来获取其名称的节点。

$pageHTML = '<html>
<head></head>
<body>

<header>
  <div>
    <nav>Menu</nav>
    <span>Another text</span>
  </div>
</header>

<section>Section</section>
<footer>Footer</footer>
</body>
</html>';

$dom = new DOMDocument;
libxml_use_internal_errors(true);
$dom->loadHTML($pageHTML);
libxml_use_internal_errors(false);

$elements = $dom->getElementsByTagName('header');
foreach ($elements as $node) {
    $nav = $node->getElementsByTagName('nav');
    $span = $node->getElementsByTagName('span');

    $nav->item(0)->setAttribute('class', 'my_class');
    $span->item(0)->setAttribute('class', 'my_class');
 }

echo $dom->saveHTML();
© www.soinside.com 2019 - 2024. All rights reserved.