-
在函数中直接使用
function get(content){ console.log(this.content) } get("你好") //等价于get.call(window, "你好")
-
函数作为对象的方法被调用(谁调用我,我就指向谁)
var person = { name:"zhangsan" run:function(time){ console.log(`$(this.name) 在跑步,最多$(time)min就不行了`) } } person.run(10) //等价于person.run.call(person, 10)
-
箭头函数中的this
js中this的指向问题
最新推荐文章于 2024-10-31 15:56:11 发布