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

詳細については、Object getters/setterを参照してください。

于 2012-06-13T10:43:33.133 に答える