上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 34 下一页
摘要: 以前看到的一个object的写法,当时有全部JS都用这样的类的方式去写的冲动 1 <script type="text/javascript"> 2 function Student(){ 3 this.id=0; 4 this.name=""; 5 this.age=0; 6 } 7 8 Student.prototype.GetName=function(){ 9 return this.name;10 }11 12 Student.prototype.SetName=function(value){13 this.name=value; 阅读全文
posted @ 2012-07-27 16:08 振宇爸爸 阅读(532) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 34 下一页