删除节点

remove any dom you hate

Author
IBAS0742
Daily installs
0
Total installs
2
Ratings
0 0 0
Version
1.0.3
Created
2024-09-08
Updated
2024-09-08
License
MIT
Applies to
All sites

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

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 打开面板