1. 頁中直接引用
2.動態寫入頁
document.write('')
document.write('')
3.模擬包含函數
function include(path){
var a=document.createElement("script");
a.type = "text/javascript";
a.src=path;
var head=document.getElementsByTagName("head")[0];
head.appendChild(a);
}
include("a.js")
include("b.js")
4.js模組化程式
require.js的方法