JS高级代码
JS 的defineProperties 设置多个属性
var book = {}; //用Object.defineProperties()方法设置多个属性 Object.defineProperties(book,{ _year:{ value:"ry", writable: true }, _author:{ value:'better2017', writable: true }, edition:{ value:1 }, year:{ get:function(){ return this._year ; }, set:function(newValue){ this._year = newValue; } }, author:{ get:function(){ return this._author; }, set:function(newValue){ this._author = newValue; } } });
作者:BestNow
出处:http://www.cnblogs.com/BestNow/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
出处:http://www.cnblogs.com/BestNow/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。