gpt4 book ai didi

javascript - 如果使用函数调用执行严格模式函数,则其 'this' 值将是未定义的

转载 作者:行者123 更新时间:2023-12-02 03:36:56 25 4
gpt4 key购买 nike

我在使用 jshint 时收到以下警告。为什么?

If a strict mode function is executed using function invocation, its 'this' value will be undefined.

function demo() {
'use strict';

document.querySelector('#demo').addEventListener('click', test);

function test() {
console.log(this);
}
}

最佳答案

这对我有用

function demo() {
'use strict';

var that = this; //new line

document.querySelector('#demo').addEventListener('click', test);

function test() {
console.log(that); //print that instead of this
}
}

关于javascript - 如果使用函数调用执行严格模式函数,则其 'this' 值将是未定义的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49883153/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com