seajs加載jquery提示$ is not a function

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

相關文章
相關標籤/搜索