首页 > 其他 > 详细

mootools1.5.1使用笔记:类的创建,继承,为现有类增加新方法

时间:2015-01-29 23:59:13      阅读:562      评论:0      收藏:0      [点我收藏+]
 1 window.addEvent(‘domready‘,function(){
 2         /*
 3             新建一个Person的类,类上有 name属性和sayHello方法;
 4         */
 5         var Person= new Class({
 6             initialize: function(name){
 7                 this.name = name;
 8             },
 9             sayHello:function(){
10                 console.log(‘hello,my name is ‘+this.name);
11             }
12 
13         });
14 
15         //新建一个Sperman类,继承Person上的属性和方法
16         var Sperman=new Class({
17             Extends:Person,
18             initialize:function(name,age){
19                 this.parent(name);
20                 this.age=age;
21             },
22         });
23         //给Dog扩展新方法 sayWang
24         Sperman.implement({
25             sayAll:function(){
26                 console.log(this.name+‘ is ‘+this.age+‘ years old...‘);
27             }
28         });
29         var Sperman=new Sperman(‘ollie‘,27);
30         Sperman.sayHello();//consolo.log   hello,my name is ollie
31 
32         Sperman.sayAll();//console.log  ollie is 27 years old...
33     });

 

mootools1.5.1使用笔记:类的创建,继承,为现有类增加新方法

原文:http://www.cnblogs.com/ollie-sk8/p/4261308.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!