js获取页面上的所有标签

new Set([...document.querySelectorAll('*')].map(v => v.tagName));
new Set(Array.from(document.querySelectorAll('*')).map(v => v.tagName));

你可能感兴趣的:(javascript)