-1
var $ =
{
message: function()
{
return "Hello World";
},
got: this.message()
};
$.got;
如何製作這樣的作品。對象中的調用方法
var $ =
{
message: function()
{
return "Hello World";
},
got: this.message()
};
$.got;
如何製作這樣的作品。對象中的調用方法
*這*爲執行上下文的默認屬性。普通對象沒有* this *(除非你指定了這樣一個屬性)。 – RobG