如果我使用 DOM 对象,则将它们缓存在本地会更快(如果我想多次访问它们,例如在循环中等)
var myImages = document.images;
当我上课时
function Apple (type) {
this.type = type;
this.color = "red";
this.getInfo = function() {
return this.color + ' ' + this.type + ' apple';
};
}
如果我这样做真的会更快吗:
var info= apple.getInfo();
用 var Color 做某事
还是apple.getInfo()
每次都可以一起工作?
信息不是参考apple.getInfo()
吗?