一、this的指向主要有下面几种:1、this出现在全局函数中,永远指向windowvarCarfunction(){console.log(this);windowconsole.log(this.Carwindow.Car,Carwindow.Car);truetrue}Car();Car作为全局函数,直接调用时,函数的this指向window。也就是Carwindow.Carthis.Car2、this出现在严格模式中永远不会指向window函数中使用es5的严格模式‘usestrict’,this为undefinedvarCarfunction(){'usestrict'console.log(this)...