Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为 youtube 评论制作 chrome 扩展,但是当我添加一些东西时,它会不断添加
<wbr></wbr>
标签,有什么办法可以在javascript中删除页面上的所有这些标签?
最简单的方法是:
var wbrs = document.getElementsByTagName('wbr'); while (wbrs.length) { wbrs[0].parentNode.removeChild(wbrs[0]); }
JS 小提琴演示。