gpt4 book ai didi

twitter-bootstrap - 使用 Require.js 从 CDN 加载 Bootstrap

转载 作者:行者123 更新时间:2023-12-03 06:07:20 26 4
gpt4 key购买 nike

Bootstrap分布在CDN中

http://www.bootstrapcdn.com/

  • 是否可以使用 Require.JS 2.x(经过填充或原生 AMD)加载 Bootstrap?

  • 如何使用 Require.js 直接从 CDN URL 加载 Bootstrap 或任何缩小的 JS

最佳答案

requirejs.config({
appDir: ".",
baseUrl: "js",
paths: {
/* Load jquery from google cdn. On fail, load local file. */
'jquery': ['//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min', 'libs/jquery-min'],
/* Load bootstrap from cdn. On fail, load local file. */
'bootstrap': ['//netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.', 'libs/bootstrap-min']
},
shim: {
/* Set bootstrap dependencies (just jQuery) */
'bootstrap' : ['jquery']
}
});

require(['jquery', 'bootstrap'], function($) {
console.log("Loaded :)");
return {};
});

关于twitter-bootstrap - 使用 Require.js 从 CDN 加载 Bootstrap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13464846/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com