在"use strict"
模式中,this
函数中应该是[object Window]
而不是在常规模式下调用函数的对象。但是当我试图证明概念时,它不起作用,我想知道 Visual Studio Code 中的 ES6 扩展有什么问题,但我不知道如何解决。有人能帮我吗?:| 这是我用来测试的代码"use strict"
:
function name1() {
document.querySelectorAll("p")[0].innerHTML += this;
}
function name2() {
"use strict";
document.querySelectorAll("p")[0].innerHTML += this;
}
document.querySelectorAll("button")[0].addEventListener("click", name1);
document.querySelectorAll("button")[1].addEventListener("click", name2);