0

如果可以创建Element.prototype一个字符串?

例如 :

代替 :

Element.prototype.height = function() { return this.offsetHeight; };

写这样的东西:

Element.prototype.height = Element.offsetHeight;
4

1 回答 1

0

你可以尝试这样的事情:

Element.prototype = {
        get height( ):{   return this.offsetHeight;   }
        constructor : Element
};

用法:

new Element().height    //without parenthesis

有关更多信息,请参阅对象获取器/设置器

于 2012-06-13T10:43:33.133 回答