摘要: function Person(name , age , job){ this.name = name; this.age = age; this.job = job; this.sayName = function(){ alert(this.name); }; } var person1 = n 阅读全文
posted @ 2016-08-10 23:58 Mr.Kiven 阅读(167) 评论(0) 推荐(0) 编辑