0
我有一個函數addUIComponents(),它在debug.js中將動態組件添加到displayComponents.jsp。現在,addUIComponents()在另一個js文件中調用,它檢查是否需要此函數。 這是debug.js文件:調用位於外部文件中的jQuery函數
function addUIComponents(){
alert("In addUIComponents");
//some work
}
這是another.js
var debugMode = true;
$(document).ready(function() {
if(debugMode == true) {
addUIComponents();
}
});
我的問題是addUIComponents()不會被調用。我可以這樣說,因爲沒有顯示警報。請幫助。
我曾試過。仍然無法正常工作:/ –
在控制檯中的任何錯誤,我假設它說'addUIComponents是未定義的' – tymeJV