gpt4 book ai didi

Javascript : problem with 'this'

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:27:56 26 4
gpt4 key购买 nike

这是一段代码

function test() {
this.value = "foo";
}

$(document).ready(function () {
test();
alert(this.value); //--> return undefined
alert(window.value); //--> return 'foo'
});

谁能给我解释一下这些结果?

问候

萨尔瓦多

最佳答案

在您的函数 test() 中,this 引用到 DOMWindow

$(document).ready() 函数中,this 指的是 document

因为在 test() 中你设置了窗口的值,这就是为什么 window.value ==> 'foo',但是 document.value = => 未定义

Read this article on function scope which might help

关于Javascript : problem with 'this' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5911493/

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