Uncaught TypeError: Object 0 has no method 'addEventListener'
var A={};
A.addEventsToClassName=function(event,className,func)
{
var a=document.getElementsByClassName(className);
for(var b in a)
{
b.addEventListener(event,func,false);
}
};
一旦函數稍後在代碼中調用,對象b就意味着元素對象。我怎樣才能防止這個錯誤?未捕獲類型javascript中的錯誤:對象沒有方法
你好嗎?接受你剛纔的問題? ](http://stackoverflow.com/q/22649724/1216976) – SomeKittens