标签: javascript this
我知道在函数“严格使用” this中,函数获得undefined的值,但是我提到如果我调用window.foo()而不是foo(),则{{1 }}获得this的值,下面是代码示例:
this
undefined
window.foo()
foo()
window
我想了解为什么会这样。