使用SeaJS,require加载Jquery的时候总是为null

RT,这个问题困扰了我两天,使用别人的例子、官网down下来的example都没有问题。但是放到自己项目里就 var $=require(“jQuery”) 为null。

后来发现,jquery本来没有amd规范的,于是从官网上的example下来里面的jquery拿过来直接用,最注意的是,在jquery里面增加了有define这段,里面有一个路径要根据自己实际项目路径进行调整。

if ( typeof module === "object" && module && typeof module.exports === "object" ) {  
    // Expose jQuery as module.exports in loaders that implement the Node  
    // module pattern (including browserify). Do not create the global, since  
    // the user will be storing it themselves locally, and globals are frowned  
    // upon in the Node module world.  
    module.exports = jQuery;  
} else {  
    // Otherwise expose jQuery to the global object as usual  
    window.jQuery = window.$ = jQuery;  

    // Register as a named AMD module, since jQuery can be concatenated with other  
    // files that may use define, but not via a proper concatenation script that  
    // understands anonymous AMD modules. A named AMD is safest and most robust  
    // way to register. Lowercase jquery is used because AMD module names are  
    // derived from file names, and jQuery is normally delivered in a lowercase  
    // file name. Do this after creating the global so that if an AMD module wants  
    // to call noConflict to hide this version of jQuery, it will work.  
    if ( typeof define === "function" ) {  
        define("lib/jquery/jquery/1.10.1/jquery-debug",[], function () { return jQuery; } );  
    }  
}  

define(“lib/jquery/jquery/1.10.1/jquery-debug”,[], function () { return jQuery; } );

转自:http://blog.youkuaiyun.com/adeyi/article/details/18003043

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值