我找到了我的问题How to include js file in another js file?的答案但是在运行我的应用程序时找不到资源... 我尝试使用
var x = document.createElement('script');
x.src = '../apps/appChangePwd/initApp.js';
document.getElementsByTagName("head")[0].appendChild(x);
和
$.getScript('../apps/appChangePwd/initApp.js', function()
{
alert("okkk!!!");
});
在第一种情况下
returns http://localhost:8080/apps/appChangePwd/initApp.js 404 (Not Found)
在第二个
http://localhost:8080/apps/appChangePwd/initApp.js?_=1404291135662 404 (Not Found)
但是我的js文件位于正确的路径中:apps/appChangePwd/
!!!
答案 0 :(得分:1)
您可以使用JQuery:
$.getScript('My_Js_File.js',function(){
alert('Javascript File Loaded');
});