DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> seajs加載jquery時提示$ is not a function該怎麼解決
seajs加載jquery時提示$ is not a function該怎麼解決
編輯:關於JavaScript     

jquery1.7以上的都支持模塊化加載,只是jquery默認的是支持amd,不支持cmd。所以要用seajs加載jquery時,我們需要稍微做下改動,需要把以下內容做下修改,具體修改方式如下:

 if (typeof define === "function" && (define.amd)) {
   define( "jquery", [], function() {
     return jQuery;
   });
 }

改成

 if (typeof define === "function" && (define.amd || define.cmd)) {
   define( "jquery", [], function() {
     return jQuery;
   });
 }

 if (typeof define === "function") {
   define( "jquery", [], function() {
     return jQuery;
   });
 }

通過以上代碼的修改就可以成功解決seajs加載jquery時提示$ is not a function問題,希望對大家有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved