非標準
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
非推奨
This feature has been removed from the Web standards. Though some browsers may still support it, it is in the process of being dropped. Do not use it in old or new projects. Pages or Web apps using it may break at any time.
概要
オブジェクトのプロパティと関数とを結びつけます。 そのプロパティの値が取得されようとする時に、結びつけた関数が呼び出されます。
構文
obj.__defineGetter__(
prop,
func)
引数
prop
- 関数と結びつけるプロパティの名前を表す文字列
func
- そのプロパティへアクセスされた時に呼び出される関数
説明
__defineGetter__
を使う事で、既存のオブジェクトにゲッタ関数を定義する事ができます。
このメソッドは ECMAScript 仕様で定義されていませんので、代わりに Object.defineProperty
メソッド を使用してください。