php queryList移除dom元素的坑记录

2023-08-28 21:44:17 浏览数 (1)

为了保证代码中对象单例,我一直使用单例模式,这样导致移除dom元素后获取结果html全是异常,牢记教训。举个栗子:

代码语言:javascript复制
// 读取元素
$eles = QueryList::html($response)->find('#contentstart');

// 移除主题广告
$eles->find('.ceo-ads')->remove();

// 移除视频广告
$eles->find('.ceo-video-s')->remove();

// 移除下载按钮
$eles->find('fieldset')->remove();

// 获取替换后的结果
$newResponse = $eles->html();

牢记不要使用单例,这会导致你一直在bug中找不到任何原因。不得不说queryList优化得挺好,以前的phpJquery非常不稳定,这个非常好用。

php

0 人点赞