我正在尝试使用油脂猴子修复div。此特定措施旨在作为一种防粘连措施。通过伪装成Google广告来隐藏剧透。
<div class="bbCodeBlock-content adsbygoogle">
我如何使用油脂猴子从这个div删除adsbygoogle?
答案 0 :(得分:0)
您可以尝试添加此脚本
document.getElementsByClassName('adsbygoogle')[0].classList.remove('adsbygoogle');
或者异步执行
function remove() {
if (document.getElementsByClassName('adsbygoogle').length) {
document.getElementsByClassName('adsbygoogle'[0].classList.remove('adsbygoogle');
} else {
setTimeout(remove, 100);
}
}
remove();