gpt4 book ai didi

javascript - bootstrap main.js 和 plugins.js 脚本有什么用?

转载 作者:太空宇宙 更新时间:2023-11-04 13:20:01 25 4
gpt4 key购买 nike

Plugins.js 和 main.js 包含在 initializrstwitter bootstrap 3 的版本(也许也在 vanilla bootstrap 3 中,我没有检查过)。我不知道他们在那里做什么,在 getbootstrap.com 上找不到任何解释|并且文件本身不包含很多解释性注释。

谁能解释一下他们在那里的目的是什么,他们应该做什么?对我来说,plugins.js 似乎是为了加载您想要包含的任何其他 javascript。是对的吗?你为什么要那样做?


这些是 plugins.js 的内容(main.js 是空的):

// Avoid `console` errors in browsers that lack a console.
(function() {
var method;
var noop = function () {};
var methods = [
'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error',
'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log',
'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd',
'timeStamp', 'trace', 'warn'
];
var length = methods.length;
var console = (window.console = window.console || {});

while (length--) {
method = methods[length];

// Only stub undefined methods.
if (!console[method]) {
console[method] = noop;
}
}
}());

// Place any jQuery/helper plugins in here.

最佳答案

如您所见,这些是 HTML5 样板的一部分,而不是 Bootstrap。

plugins.js 文件是您可以包含所有 jQuery 或其他辅助插件的地方。

main.js 文件用于您的主要应用程序脚本,即实例化和使用插件的代码。

这些文件被 H5BP 构建脚本缩小和清除缓存。 (您会注意到主 HTML 模板的脚本部分对如何引用脚本相当严格,以便它可以在静态构建期间更新。)

关于javascript - bootstrap main.js 和 plugins.js 脚本有什么用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19067261/

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