uweb/zh/searchurl/sitejs/m.baidu.com.js
2022-06-30 11:43:09 +08:00

18 lines
377 B
JavaScript

(function () {
class removeDom {
constructor(classList = []) {
this.adClassList = classList;
};
remove() {
this.adClassList.forEach((c) => {
$(`${c}`).length > 0 && $(`${c}`).remove();
});
};
};
let adClassList = ['.ec_wise_ad', '.ec_wise_pp', '.na-like-container'];
let ad = new removeDom(adClassList);
ad.remove();
})();