我正在尝试通过 PHP 的 DOMDocument 传递一个 HTML 块来重构<img>
内联元素:http: //www.appelsiini.net/projects/lazyload
对于每个<img>
我尝试插入重构的副本,然后将原始副本包装在<noscript>
标签中以用于非 JS 后备。
例子:
输入:
<img src="img/example.jpg" width="640" heigh="480">
输出:
<img class="lazy" src="img/grey.gif" data-original="img/example.jpg" width="640" heigh="480"><noscript><img src="img/example.jpg" width="640" heigh="480"></noscript>
我有包装工作,新元素也正确构造。问题是第二个appendChild
(下面)不起作用,我不知道为什么。任何人都可以提供解决方案吗?
我有以下代码:
$noScript = $dom->createElement('noscript');
$images = $dom->getElementsByTagName('img');
foreach ($images as $image) {
$src = $image->getAttribute('src');
$alt = $image->getAttribute('alt');
$title = $image->getAttribute('title');
$style = $image->getAttribute('style');
$newImage = $dom->createElement('img');
$newImage->setAttribute('class', 'lazy');
$newImage->setAttribute('data-original', $src);
$newImage->setAttribute('src', '/images/whitespace.gif');
if ($style) $newImage->setAttribute('style', $style);
if ($alt) $newImage->setAttribute('alt', $alt);
if ($title) $newImage->setAttribute('title', $title);
$noScriptClone = $noScript->cloneNode();
$image->parentNode->replaceChild($noScriptClone, $image);
$noScriptClone->appendChild($image);
$noScriptClone->parentNode->appendChild($newImage);
}
return $dom->saveHTMLExact();