刷题区Js手撕统计当前网页出现过多少种 html 标签统计当前网页出现过多少种 html 标签 new Set([...document.getElementsByTagName("*")].map((v) => v.tagName)).size;