CMD(Common Module Definition)模块定义规范 该规范的代表框架是SeaJS CMD 推崇依赖就近,AMD 推崇依赖前置,对比上面AMD的define 就一路了然看到二者的区别了 define(function(require, exports, module) { var math= require('./math') //当使用到math模块了才去加载math模块 math.add(1,2) // 此处略去100 ...