作用:改变函数体内 this 的指向。 func.call(this, arg1, arg2);//立即执行,逐个传参 func.apply(this, [arg1, arg2])//立即执行,伪数组传参 func.bind(this, arg1, arg2)//不会立即执行,逐个传参