复制代码 代码如下: var e = "globalVariableValue";//defined outside of any function, it is a global variable, but does not store in "this" f = "globalVariableValue2"; this.g = "globalVariableValue3"; console.log(this.e);//undefined console.log(this.f);//globalVariableValue2 console.log(this.g);//globalVariableValue3 delete f; delete g; console.log(this.f);//undefined console.log(this.g);//undefined