var obj = { name:"zhang", age:"21"}var ary = [110,120,130,140];ary.forEach(function(item,index,input){ console.log(this) //undefined is not a function}.call(obj))为什么这里用call不能改变this值为obj,用bind就行,当然这里不讨论forEach的第二个参数来改变上下文
1 回答
慕勒3428872
TA贡献1848条经验 获得超6个赞
因为在
function(item,index,input){
console.log(this) //undefined is not a function
}.call(obj)
时,函数就已经执行了,而你这个函数没有返回值,所以你传给forEach的是undefined
而bind调用会自动的返回一个函数。
添加回答
举报
0/150
提交
取消