猿问

JavaScript关于闭包的运行机制的问题,运行w3cschool的代码,结果出现问题

console.log("0");
var name = "The Window";
console.log("1");
var object = {
    name: "My Object",
    getNameFunc: function () {
        return function () {
            console.log(this.name);
            return this.name;

        };
    }
};
console.log("3");
console.log(object.getNameFunc()());
    }

这是原代码地址:https://www.w3cschool.cn/jsnote/jsnote-closure.html


function JSPfunction003() {
console.log("0");
var name = "The Window";
console.log("1");
var object = {
    name: "My Object",
    getNameFunc: function () {
        return function () {
            console.log(this.name);
            return this.name;
        };
    }
};
console.log("3");
console.log(object.getNameFunc()());
}


桃花长相依
浏览 587回答 1
1回答

慕的地10843

另外一种this容易被用错的情况是使用闭包。一定要记住,闭包使用this关键词无法访问外部函数的this变量。函数的this变量只能被自身访问,其内部变量不行所以是undefined,没有输出
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答