摘要: 1 function Person(name){ 2 var _name=name; 3 this.getName=function(){ 4 console.log(_name) 5 } 6 } 7 8 var p=new Person('bibibi'); 9 10 console.log(p. 阅读全文
posted @ 2020-06-29 17:39 软妹酸 阅读(838) 评论(0) 推荐(0) 编辑