IE6在大陆的肆虐,让人不敢尝试许多东西,像get,set这样的好东西就是一个例子,因为它们在IE67就是语法错误,因此ecma262v5才搞出defineProperty这样的东西。
用法很简单,让一个方法像属性那样使用!
var a = { bb: "xxx", get aa(){//不用写function与: return this.bb+"!" } } console.log(a.aa) var fn = function(){ this.ee = "!!" } fn.prototype = { get dd(){//不用写function与: return this.ee+"pp" } } var instance = new fn; console.log(instance.dd)
我已用到我的后端框架去了!