Dynamically load a JavaScript file

后端 未结 28 3046
说谎
说谎 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:25

    If you have jQuery loaded already, you should use $.getScript.

    This has an advantage over the other answers here in that you have a built in callback function (to guarantee the script is loaded before the dependant code runs) and you can control caching.

提交回复
热议问题