如何实现链式调用模式(模仿jquery)
    如 obj.eat().smoke().;
    var obj = function (){
    function eat(){
    console.log(‘eatting’);
    return this;
    }
    function smoke(){
    console.log(‘smoking’);
    return this;
    }
    }
    //只需要在方法中返回this 就可以反复调用