码迷,mamicode.com
首页 > 编程语言 > 详细

javascript-链式编程

时间:2017-08-08 00:24:44      阅读:143      评论:0      收藏:0      [点我收藏+]

标签: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-链式编程

标签:javascript   链式编程   

原文地址:http://f1yinsky.blog.51cto.com/12568071/1954284

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