如果可以创建Element.prototype
一个字符串?
例如 :
代替 :
Element.prototype.height = function() { return this.offsetHeight; };
写这样的东西:
Element.prototype.height = Element.offsetHeight;
如果可以创建Element.prototype
一个字符串?
例如 :
代替 :
Element.prototype.height = function() { return this.offsetHeight; };
写这样的东西:
Element.prototype.height = Element.offsetHeight;
你可以尝试这样的事情:
Element.prototype = {
get height( ):{ return this.offsetHeight; }
constructor : Element
};
用法:
new Element().height //without parenthesis
有关更多信息,请参阅对象获取器/设置器。