return this链式操作

function Fn(){};
Fn.prototype = {
    constructor:Fn,
    a:function(){
        alert(1);
        return this;  //实现链式操作。即fn.a().b()
        //如果要fn.a().b().c()的话,就需要在b:function里面添加return this;
    },
    b:function(){
        alert(2);
    },
    c:function(){
        alert(3);
    }
};
var fn = new Fn();
fn.a().b();

 

posted @ 2016-01-14 09:33  黑客PK  阅读(314)  评论(0编辑  收藏  举报