有些時間我們希望能按需動態載入js文件,而不是直接在HTML中寫script標簽。 以下為示例代碼: 1 var js = document.createElement('script'); 2 js.async = true; 3 js.src = jsSrc; 4 js.onload = fun ...
有些時間我們希望能按需動態載入js文件,而不是直接在HTML中寫script標簽。
以下為示例代碼:
1 var js = document.createElement('script'); 2 js.async = true; 3 js.src = jsSrc; 4 js.onload = function() { 5 // 載入完成了 6 }