1. global this 2.function this 3.prototype this 4. object this 5.DOM this 6 HTML this 7 override this 8 with this 9 jQuery this 10 thisArg this 注意一点: 在JavaScript里面你可以嵌套函数,也就是你可以在函数里面定义函数.嵌套函数可以通过闭包捕获父函数的变量,但是这个函数没有继承this function Thing() { } Thing.pr…
JavaScript中会经常遇到一个操作符:! 这是一个布尔操作符,用于将操作的值强制转换为布尔值并取反.常用场景如下: //条件判断中使用 var a; var b=null; if(!a){ console.log("a是假的"); } if(!b){ console.log("b是假的"); } //操作布尔值 var c = false; var d = !c;//d === true; //IIFE(自执行函数.立即执行函数:Immediately-Inv…