码迷,mamicode.com
首页 > 其他好文 > 详细

面向对象写法模板

时间:2014-12-08 12:09:15      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   on   div   log   

//构造函数
    function createPerson(name,age,work){ 
        this.name=name;
        this.age=age;
        this.work=work;
        //初始化
        this.inint();
    }
    //原型方法
    createPerson.prototype={
        //修正constructor
        constructor:createPerson,
        inint:function(){ 
            this.showMsg();
            this.sayHi();
        },
        showMsg:function(){ 
            //alert(‘我的名字是‘+this.name+‘,年龄‘+this.age+‘,‘+this.work);
        },
        sayHi:function(){ 
            //alert(‘hi!我是一个:‘+this.work);
        }
    }
    //调用
    var p1=new createPerson(‘tom‘,‘21‘,‘学生‘);
    var p2=new createPerson(‘ollie‘,‘27‘,‘web前端工程师‘);

 

面向对象写法模板

标签:style   blog   io   ar   color   sp   on   div   log   

原文地址:http://www.cnblogs.com/ollie-sk8/p/4150682.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!