seajs相关探究如何包裹基础库

GhostStories 2012-10-10

问题

在使用seajs的时候,我们其实也需要使用一些基础的库,比如jQuery这样的,如何配合使用呢

解答

其实在CMD那篇里面已经说明,一个模块就是一个JS文件,书写格式:

define(factory);

       而seajs也是遵循CMD规范的,所以我们可以采用的方式:

define(function(){

    //jQuery的代码
    。。。。。。

     return $.noConflict(true);

});

  扩展阅读

https://github.com/seajs/seajs/issues/394

相关推荐

GhostStories / 0评论 2017-09-26
GhostStories / 0评论 2017-09-26
binglingnew / 0评论 2017-08-29

binglingnew / 0评论 2017-07-29