原生JS获取页面所有元素并统计每个元素的个数let el = document.getElementsByTagName('*') 获取页面所有的元素 console.log(el) let elObj = {} for(var i=0i2023-03-09JavaScript220