我有两个函数,每个函数都在一个JS文件中。 JS文件位于同一个应用程序(WGInsurance)和同一文件夹(Scripts)下。 在file1中,我调用文件2中的function2,但这不起作用。任何人都有问题。
文件1:
reference path="File2.js" />
if (typeof (WGInsurance) == "undefined")
{ WGInsurance = { __namespace: true }; }
if (typeof (WGInsurance.Scripts) == "undefined")
{ WGInsurance.Scripts = { __namespace: true }; }
WGInsurance.Scripts.File1 = {
myFunction1: function () {
WGInsurance.Scripts.File2.myFunction2(); // Is this working ??
},
__namespace: true
};
文件2:
if (typeof (WGInsurance) == "undefined")
{ WGInsurance = { __namespace: true }; }
if (typeof (WGInsurance.Scripts) == "undefined")
{ WGInsurance.Scripts = { __namespace: true }; }
WGInsurance.Scripts.File2 = {
myFunction2: function () {
alert("Hello");
},
__namespace: true
};
提前致谢。