欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

访问器属性

程序员文章站 2022-07-15 22:12:39
...
var book={
    _year:2004, //_year前面的下划线是一种常用的记号,用于表示只能通过对象方法访问的属性
    edition:1
};
//ES5的方法  支持的浏览器IE9+(IE8 只是部分实现)、Firefox 4+、Safari 5+、Opera12+ 和Chrome
Object.defineProperty(book,'year',{
    get:function(){
        return this._year;
    },
    set:function(newValue){
        if(newValue>2004){
            this._year=newValue;
            this.edition+=newValue-2004
        }
    }
});
book.year=2005;
console.log(book.edition); //2


//在ES5的Object.defineProperty方法出现之前,要创建访问器属性,一般都是用两个非标准方法
//这两个方法最初是由Firefox 引入的,后来Safari 3、Chrome 1 和Opera 9.5 也给出了相同的实现
//非标准方法
book.__defineGetter__('year',function(){
    return this._year;
});
book.__defineSetter__('year',function(newValue){
    if(newValue>2004){
        this._year=newValue;
        this.edition+=newValue-2004
    }
})