我正在构建Chrome应用,然后...
文件:2个js文件(1个启动文件和1个我想在启动后执行的文件) 连接到两个js文件的1html文件。
因此,在启动js文件中,我有一个超时,即启动后它将用主文件替换文档中自己的脚本元素。
我也在网页中尝试了此方法,并且该方法成功运行,因此必须与Chrome应用程序有关。
如果您要检查chrome应用程序,则会看到该脚本确实存在,但是它没有执行...
//Before the timeout is executed the 'scripts' element's content is the
//script with the source of the startup file AKA this file.
setTimeout(function(){
document.getElementById('scripts').innerHTML='<script src="MAINFILE.js"
type="text/javascript"></script>';
},5000);
我只是尝试了一种新方法,并且它起作用了(appendChild)