如何统计当前页面出现的所有标签
Issue 欢迎在 Gtihub Issue 中回答此问题: Issue 573
Author 回答者: shfshanyue
document.querySelectorAll('*')
document.getElementsByTagName('*')
$$('*')
,可在浏览器控制台使用document.all
,已废弃,不建议使用
Author 回答者: Si3ver
new Set($$('*').map(it => it.tagName.toLowerCase()))