摘要: 构造函数创建对象 ==========咱们先来一个栗子======= function Person(name){ //构造函数 this.name=name; } Person.prototype.printName=function( ){ //原型对象 alert(this.name); } 阅读全文
posted @ 2019-06-29 01:57 不想飞的小鸟 阅读(136) 评论(0) 推荐(0) 编辑