题解 | #修改 this 指向#
修改 this 指向
http://www.nowcoder.com/practice/a616b3de81b948fda9a92db7e86bd171
call()、bind()、apply()的用法,改变this的指向,区别在于
f.call(obj, arg1, arg2...),
f.bind(obj, arg1, arg2,...)(),
f.apply(obj, [arg1, arg2, .])
- apply
function bindThis(f, oTarget) { return function() { return f.apply(oTarget, arguments) } }
- bind
function bindThis(f, oTarget) { return f.bind(oTarget) }
- call
function bindThis(f, oTarget) { return function() { return f.call(oTarget, ...arguments) } }