객체에 대한 쓰기 템플릿

2359 단어 대상을 향하다
// 

    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 ');

좋은 웹페이지 즐겨찾기