This code generates x is not definedJS查詢 - 全局的window對象
var myobj1 =
{
x:9,
myfunction:function()
{
if(this === window)
alert("x is not Defined");
else if (this === myobj1)
alert(this.x);
else
alert("Error!");
}
}
function test()
{
setTimeout(myobj1.myfunction, 1000);
}
test();
Whereas this code generates x=9 as output
var myobj1 =
{
x:9,
myfunction:function()
{
if(this === window)
alert("x is not Defined");
else if (this === myobj1)
alert(this.x);
else
alert("Error!");
}
}
function test()
{
setTimeout(function()
{
myobj1.myfunction()
}, 1000);
}
有人能解釋我爲什麼「如果不是在測試方法中使用回調方法則全局窗口對象被稱爲」和「這種情況下回調方法的意義是什麼」?