首页 > 代码库 > 面向对象写法模板
面向对象写法模板
//构造函数 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前端工程师‘);
面向对象写法模板
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。