是否可以将Element.prototype
创建为字符串?
例如:
代替:
Element.prototype.height = function() { return this.offsetHeight; };
写下这样的内容:
Element.prototype.height = Element.offsetHeight;
答案 0 :(得分:0)
您可以尝试这样的事情:
Element.prototype = {
get height( ):{ return this.offsetHeight; }
constructor : Element
};
用法:的
new Element().height //without parenthesis
有关详情,请参阅Object getters/setters。