我试图将 javascript 文件动态地包含到我的 js 文件中。我做了一些研究,找到了 jQuery $。GetScript ()方法将是一种理想的方式。
// jQuery
$.getScript('/path/to/imported/script.js', function()
{
// script is now loaded and executed.
// put your dependent JS here.
// what if the JS code is dependent on multiple JS files?
});
但是我想知道这个方法是否可以一次加载多个脚本?我问这个问题是因为有时候我的 javascript 文件依赖于不止一个 js 文件。
先谢谢你。