Plugins.js 和 main.js 包含在twitter bootstrap 3的initializrs版本中(可能也在 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.