将src / srcset替换为data-srcset / data-src
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将src / srcset替换为data-srcset / data-src相关的知识,希望对你有一定的参考价值。
我想将lozad.js脚本应用到我的wordpress / woocommerce前端。为此,我需要将src更改为data-src。这是我到目前为止的代码,但不起作用。
谢谢你的帮助!
function add_lazyload($content) {
$content = mb_convert_encoding($content, 'html-ENTITIES', "UTF-8");
$dom = new DOMDocument();
@$dom->loadHTML($content);
// Convert Images
$images = [];
foreach ($dom->getElementsByTagName('img') as $node) {
$images[] = $node;
}
foreach ($images as $node) {
$fallback = $node->cloneNode(true);
$oldsrc = $node->getAttribute('src');
$node->setAttribute('data-src', $oldsrc );
$newsrc = 'https://d1zczzapudl1mr.cloudfront.net/blank-kraken.gif';
$node->setAttribute('src', $newsrc);
$oldsrcset = $node->getAttribute('srcset');
$node->setAttribute('data-srcset', $oldsrcset );
$newsrcset = '';
$node->setAttribute('srcset', $newsrcset);
$classes = $node->getAttribute('class');
$newclasses = $classes . ' lozad';
$node->setAttribute('class', $newclasses);
$noscript = $dom->createElement('noscript', '');
$node->parentNode->insertBefore($noscript, $node);
$noscript->appendChild($fallback);
}
$newHtml = preg_replace('/^<!DOCTYPE.+?>/', '', str_replace( array('<html>', '</html>', '<body>', '</body>'), array('', '', '', ''),
$dom->saveHTML()));
return $newHtml;
}
add_filter('the_content', 'add_lazyload', 10);
答案
更简单的事情呢?
str_replace('<img src=','<img data-src=',$html);
还是一些正则表达式?
以上是关于将src / srcset替换为data-srcset / data-src的主要内容,如果未能解决你的问题,请参考以下文章
jQuery 将输入值附加到 iframe data-src
图片懒加载高性能实现(IntersectionObserver方法)