📅  最后修改于: 2020-10-20 05:00:29             🧑  作者: Mango
RequireJS使用jQuery作为另一个依赖项,并以小写形式注册为命名模块jquery ,并且默认情况下,还使用AMD / RequireJS在全局函数$和jQuery中注册自身。
require(['jquery'], function($) {
//code here
}
您可以加载多个和自定义库以及jQuery,如下所示-
require(['custom_library_path','jquery'], function(load_library,$) {
//related code of $ and load_library
});
下表显示了将jQuery与RequireJS配合使用以指定其依赖项。
Sr.No. | Types & Description |
---|---|
1 | Using Shim Config
jQuery uses shim configuration to define the dependencies for jQuery plugins. |
2 | Loading jQuery from CDN
jQuery uses CDN to define the dependencies for jQuery plugins. |