删除节点

remove any dom you hate

יוצר
IBAS0742
התקנות יומיות
0
סה"כ התקנות
2
דירוגים
0 0 0
גרסה
1.0.3
נוצר
08-09-2024
עודכן
08-09-2024
Size
19 קילו-בייט
רישיון
MIT
חל על
כל האתרים

删除任何不喜欢的页面元素

Index 名称 作用
删除 删除选定元素
隐藏 隐藏选定元素
跳过 跳过选定元素
qAll 多选
删除 删除记录
选择器 xpath路径
const xpath = "选择器";
// const qAll = "all";
const dom1 = document.querySelectorAll(xpath);
// const qAll = "single";
const dom2 = [document.querySelector(xpath)];

dom1.forEach(dom => {
    // ①
    dom.remove();
    // ②
    dom.style.display = 'none';
    // ③
    // 无操作
})
  • 上:上一级元素(父级节点)
  • 下:子节点
  • 左:下一个兄弟节点
  • 右:上一个兄弟节点

ctrl + q 打开面板