单项选择题
A.iB.itemC.jD.index
在until.js 文件中定义的函数utilFunc ,如果在index.js 中引用,首先需要在util.j...
单项选择题在until.js 文件中定义的函数utilFunc ,如果在index.js 中引用,首先需要在util.js 文件中利用module.exports 或exports 来输出该函数,然后在index.js 中利用()获取模块实例。
A.require()B.exports()C.getApp()D.Page()
在index.js 的Page 函数的参数中定义的属性x ,在Page 函数中的引用方式为()。A.this....
单项选择题在index.js 的Page 函数的参数中定义的属性x ,在Page 函数中的引用方式为()。
A.this.xB.xC.that.xD.app.x
如果在index.js 中Page()函数引用在app.js 中的APP()函数中定义的全局变量和函数,就必须...
单项选择题如果在index.js 中Page()函数引用在app.js 中的APP()函数中定义的全局变量和函数,就必须在index.js 的所有函数之外利用()函数创建全局对象,并利用全局对象引用全局变量和函数。
A.require()B.Page()C.exports()D.getApp()