***call,apply,bind 替换this 何时: 只要this不是想要的都可用call,apply,bind替换 选择: call/apply: *调用*函数,在调用时,*临时*替换函数中的this为指定对象. 何时: 希望在调用函数时,临时替换this,就用call apply的作用和call完全一样! 差别: apply要求传入函数的参数,必须放在数组中传入. apply可自动打散数组类型参数为单个数据再传递给函数参数 回顾: Math.max(值1,值2,…) Math.max.…