摘要: // 字面量写法 var obj={}; obj.a=function(){ console.log("a"); return this; }; obj.b=function(){ console.log("b"); return this; }; obj.a().b(); ... 阅读全文
posted @ 2018-04-10 21:09 鱿鱼须须 阅读(334) 评论(0) 推荐(0) 编辑