//設定CSS
Base.prototype.css= function(attr,value) {
for(var i=0;i<this.elements.length;i ){
if (arguments.length==1){
return getStyle(this.elements[i],attr);
}
# this. elements[i].style[attr] = value;
}
return this;
}
#TypeError: this.elements[i].style is undefined
base.js (第75 行,第3 列) this.elements[i].style[attr] = value; 這句老是報錯,找不出來錯誤
如果學習李炎恢的教學,盡量使用相同版本的Javascript