首页 > 问答 > 正文
Base.prototype.css=function(attr,value){
// this.elements[0].style.attr=value;
this.elements[0].style[attr] = value;
return this;
}
问题:下划线那一句中,.style[attr]为什么可以这样?理解不了,老师能解释一下吗?
李冲2019-03-09 22:21:07
我知道问题答案了