var book = {
_year : 2004 ,
edition : 1
}
Object.defineProperty(book , "year" , {
get:function(){
return this._year;
},
set:function(newValue){
if(newValue > 2004)
{
this._year = newValue;
this.edition += newValue - 2004;
}
}
});
book.year = 2006;
alert(book.edition);
</script>
犯罪嫌疑人X
米脂
qq_笑_17
相关分类