c.call(b) 相当于 c()
function a(){}; var b = new a(); function c(){ console.log("afaf"); } c.call(b);
你这写错了,你在第一行定义了一个方法a,但是你后面那个大括号却没有包住下面的内容