を文字列として作成することは可能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
詳細については、Object getters/setterを参照してください。