Dynamically load a JavaScript file

后端 未结 28 3371
说谎
说谎 2020-11-22 06:56

How can you reliably and dynamically load a JavaScript file? This will can be used to implement a module or component that when \'initialized\' the component will dynamical

28条回答
  •  一个人的身影
    2020-11-22 07:35

    another awesome answer

    $.getScript("my_lovely_script.js", function(){
    
    
       alert("Script loaded and executed.");
      // here you can use anything you defined in the loaded script
    
     });
    

    https://stackoverflow.com/a/950146/671046

提交回复
热议问题