摘要: function Person(name, age, job){ this.name = name; this.age = age; this.job = job; this.sayName = function(){ alert(this.name); }; } var person1 = new 阅读全文
posted @ 2017-09-08 17:47 livingWolf 阅读(227) 评论(0) 推荐(0)