原生javascript遍历找到所有匹配的元素var ele = document.getElementsByTagName(‘*’);for(var i=0;i if(ele[i].getAttribute(‘class’)==’hello’){ console.log(ele[i]) }}