JavaScript中this指向的总结
摘要:
JavaScript中this指向的总结 1、传统普通函数 this指向调用者 例如: function test(){ console.log(this) } test() // 指向window function Person() { test() { console.log(this) } } 阅读全文
posted @ 2021-11-16 20:08 黄文超 阅读(55) 评论(0) 推荐(0) 编辑