📌  相关文章
📜  在 js 文件中包含其他 js 文件 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:10.529000             🧑  作者: Mango

代码示例3
// jQuery
$.getScript('/path/to/imported/script.js', function()
{
    // script is now loaded and executed.
    // put your dependent JS here.
});