摘要: function zz(){ return { a: function (){ console.log(1); return this; }, b: function (){ console.log(2); } }} var h = new zz() h.a().b() // 1 2h.b().a( 阅读全文
posted @ 2018-11-05 15:09 xyyyy 阅读(2113) 评论(0) 推荐(0) 编辑