出于某种奇怪的原因,在调用分配this
给的函数时,thisObj
出现错误:
类型错误:thisObj 未定义
这是我所拥有的:
function templateObject()
{
"use strict";
var thisObj = this;
function _loadBackgroundImages()
{
"use strict";
// something happens here
}
thisObj.initialise = function()
{
"use strict";
_loadBackgroundImages();
};
}
然后使用实例化调用该函数,如下所示:
var templateObj = templateObject();
templateObj.initialise();
无法弄清楚为什么我会收到错误 - 知道吗?