刚换了工作捡一下基础
var a = fn(){属性,方法}; var b = fn(){属性2,方法2}; a.属性2/方法2.apply(b,[参数数组]); //a能调用b的方法 b.属性/方法.call(a, 参数列表1,参数列表2,参数列表...); //b能调用a的方法