📌  相关文章
📜  javascript 包含来自另一个的 js 文件 - Javascript 代码示例

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

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