我有一个函数addUIComponents(),它在debug.js中添加了动态组件到displayComponents.jsp。现在,在另一个js文件中调用addUIComponents(),该文件检查是否需要此函数。 这是debug.js文件:
function addUIComponents(){
alert("In addUIComponents");
//some work
}
这是在another.js
中var debugMode = true;
$(document).ready(function() {
if(debugMode == true) {
addUIComponents();
}
});
我的问题是没有调用addUIComponents()。我可以这样说,因为没有显示警报。请帮助。
答案 0 :(得分:0)
在debug.js文件中,您只需要:
function addUIComponents() {
alert("In addUIComponents");
//some work
}
确保包含两个.js文件,你应该好好去!