sea & jQuery1.7 $ is not a function
官网:http://seajs.org/docs/
文档:http://www.zhangxinxu.com/sp/seajs/docs/zh-cn/deployment.html
文档:http://yslove.net/seajs/
整合顺序:
1、jquery
2、sea.js
3、初始化
seajs.config({ alias: { "jquery": "js/jquery.js" } });
4、模块编写
define(function(require, exports, module) { var $ = require('jquery'); exports.init = function(){ alert(123); $('body').append('hello'); }; });
5、出错了:$isnotafunction
6、原因:jquery1.7以上的都支持模块化加载,只是jquery默认的是支持amd,不支持cmd。所以要用seajs加载jquery时,我们需要稍微做下改动,需要把以下内容做下修改,具体修改方式如下:
if ( typeof define === "function" && define.amd && define.amd.jQuery ) { define( "jquery", [], function () { return jQuery; } ); }
修改为:
if (typeof define === "function" && (define.amd || define.cmd)) { define( "jquery", [], function() { return jQuery; }); }
相关推荐
binglingnew 2020-02-09
人生百态 2020-02-02
binglingnew 2012-10-03
yo跟着新宇走 2020-01-03
binglingnew 2019-12-03
Gary的影响力 2014-01-23
GhostStories 2019-10-28
weimasoft 2014-06-30
wuzlun 2016-11-27
人生百态 2017-09-26
binglingnew 2019-06-06
sean0 2019-04-02
yuanyuangugu 2019-07-01
earthhour 2019-06-30
binglingnew 2016-02-16
人生百态 2019-06-28
NSStringlin 2017-09-26