非標準
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.__defineSetter__(
prop,
fun)
引数
prop
- 関数と結びつけるプロパティの名前を表す文字列
fun
- プロパティへ値が設定されようとする時に呼び出される関数。この関数は以下の形式をとります。
function (val) { ... }
val
- 関数と結びつけられたプロパティへ設定されようとしている値
説明
__defineSetter__
を使う事で、既存のオブジェクトにセッタ関数を定義する事ができます。