jquery1.7以上的都支持模塊化加載,只是jquery默認的是支持amd,不支持cmd。因此要用seajs加載jquery,須要稍微改下jqueryjquery
把模塊化
1 if (typeof define === "function" && (define.amd)) { 2 define( "jquery", [], function() { 3 return jQuery; 4 }); 5 }
改爲spa
1 if (typeof define === "function" && (define.amd || define.cmd)) { 2 define( "jquery", [], function() { 3 return jQuery; 4 }); 5 }
或code
1 if (typeof define === "function") { 2 define( "jquery", [], function() { 3 return jQuery; 4 }); 5 }
就能夠了blog