首页 > 代码库 > javascript-链式编程
javascript-链式编程
<script type="text/javascript"> function Person(){ this.name=‘li4‘ this.age=20 this.eat=function(){console.log(‘eating ...‘)} this.sing=function(){console.log(‘sing ...‘)} } var p1=new Person() console.log(‘my name is ‘+p1.name+‘, i am ‘+p1.age) p1.eat() p1.sing() //设计模式:简单的链式编程, //调用return this function Man(){ this.name=‘w5‘ this.age=24 this.eat=function(){console.log(‘包子、油条 ...‘);return this;} this.work=function(){console.log(‘coding ...‘);return this;} this.sleep=function(){console.log(‘z Z Z...‘);return this;} } var m=new Man() m.eat().work().sleep() </script>
javascript-链式编程
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。