Base.prototype.css=function(attr,value){
// this.elements[0].style.attr=value;
this.elements[0]. style[attr] = value;
return this;
提問:style['color']這種寫法是報錯的,為什麼傳參過來就可以?謝謝老師
}