未捕获的TypeError:document.getElementsByClassName(...)。forEach不是函数

时间:2015-12-11 09:09:30

标签: javascript

我正在尝试以下代码

Object.prototype.colorChange=function(element, index, array){
    console.log("e,l,m",element,index,array);
    element.style.background="blue";
}

document.getElementsByClassName("w3-margin-bottom").forEach(Object.prototype.colorChange);

会出现以下错误:

  

未捕获的TypeError:document.getElementsByClassName(...)。forEach不是函数

0 个答案:

没有答案