油猴中文去头顶广告
// ==UserScript==
// @name 油猴中文去头顶广告
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 油猴中文去广告
// @author H
// @match https://bbs.tampermonkey.net.cn/*
// @icon https://www.google.com/s2/favicons?domain=tampermonkey.net.cn
// @grant unsafeWindow
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
window.onload =a()
function a (){
var oDiv=document.getElementById('父物体id');//父物体id
var arr=getByClass(oDiv, 'classname');//找到后赋值
//将链表遍历
for(let index=0;index<arr.length;index++)
{
let item = arr[index]
item.remove()//移除
}
};
//oParent表示父物体的id,sClassName表示子物体的class名字
//答题的思路就是从所有的父物体中找到class的名字将他放回。
function getByClass(oParent, sClassName)
{
var res=[];
var aTmp=oParent.getElementsByTagName('*');
for (var i=0; i<aTmp.length; i++)
{
if (aTmp[i].className.indexOf(sClassName) != -1)
{
res.push(aTmp[i]);
}
}
return res;
}
})();