深入理解this的指向问题(6种全)
摘要:
一、this的指向主要有下面几种: 1、this出现在全局函数中,永远指向window var Car = function() { console.log(this); // window console.log(this.Car==window.Car,Car==window.Car); // 阅读全文
posted @ 2021-03-05 16:57 程序员阿田 阅读(10824) 评论(0) 推荐(0)