摘要: javascript中的 get 与 set 下划线 get 语法: js function person(){ this._name = ""; } person.prototype = { get name(){ return this._name; }, set name(value){ // 阅读全文
posted @ 2018-08-15 11:35 Erwin's 阅读(104) 评论(0) 推荐(0)