在线文档教程

object.__defineGetter__

object.__defineGetter__

该特性已经从 Web 标准中删除,虽然一些浏览器目前仍然支持它,但也许会在未来的某个时间停止支持,请尽量不要使用该特性。

__defineGetter__ 方法可以将一个函数绑定在当前对象的指定属性上,当那个属性的值被读取时,你所绑定的函数就会被调用。

语法

obj.__defineGetter__(prop, func)

参数

prop一个字符串,表示指定的属性名。func一个函数,当prop属性的值被读取时自动被调用。

返回值

undefined.

描述

__defineGetter__ 方法可以为一个已经存在的对象设置(新建或修改)访问器属性,而 对象字面量中的 get 语法 只能在新建一个对象时使用。

示例

// Non-standard and deprecated way var o = {}; o.__defineGetter__('gimmeFive', function() { return 5; } console.log(o.gimmeFive // 5 // Standard-compliant ways // Using the get operator var o = { get gimmeFive() { return 5; } }; console.log(o.gimmeFive // 5 // Using Object.defineProperty var o = {}; Object.defineProperty(o, 'gimmeFive', { get: function() { return 5; } } console.log(o.gimmeFive // 5

规范

SpecificationStatusComment
ECMAScript Latest Draft (ECMA-262)The definition of 'Object.prototype.__defineGetter__()' in that specification.Living StandardIncluded in the (normative) annex for additional ECMAScript legacy features for Web browsers (note that the specification codifies what is already in implementations).

浏览器兼容性

FeatureChromeEdgeFirefoxInternet ExplorerOperaSafari
Basic Support(Yes)(Yes)(Yes)111(Yes)(Yes)

FeatureAndroidChrome for AndroidEdge mobileFirefox for AndroidIE mobileOpera AndroidiOS Safari
Basic Support(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)