Answers:
在顶部,bootstrap.css
您应该有如下注释:
/*!
* Bootstrap v2.3.1
*
* Copyright 2012 Twitter, Inc
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
*/
如果它们不存在,则可能已将其删除。
版本:
您可以在此处查看版本历史记录。如果源是v2.0.0(2012年1月)及更高版本,则不应破坏向后兼容性。如果是v2.0.0之前的版本,请在此处获取有关升级的详细信息。
您还可以通过浏览器中的javascript控制台检查引导程序版本:
$.fn.tooltip.Constructor.VERSION // => "3.3.7"
信用:https : //stackoverflow.com/a/43233731/1608226
之所以将其发布在这里是因为,当我忘记在搜索中包括JavaScript并最终跳过这个问题而不是上面的问题时,我总是会遇到这个问题。如果这对您有帮助,请确保也赞成该答案。
jQuery.fn.tooltip.Constructor.VERSION
对于没有冲突的情况:)谢谢!
在 Package.json
"dependencies": {
// ...
"bootstrap": "4.1.3"
// ...
}
node_modules
文件夹,然后在该文件夹下bootstrap
文件夹package.json
scss/bootstrap.scss
要么 css/bootstrap.css
README.md
package.json
,仅显示满足构建要求的最低版本。它不会显示您安装的版本。看看Tilde&Caret速记
页面顶部应标明。
就像是。
/* =========================================================
* bootstrap-modal.js v1.4.0
* http://twitter.github.com/bootstrap/javascript.html#modal
* =========================================================
* Copyright 2011 Twitter, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ========================================================= */
最简单的方法是找到引导文件(bootstrap.css或bootstrap.min.css)并阅读文档块,您将看到类似的内容
Bootstrap v3.3.6 (http://getbootstrap.com)
该注释看起来是Bootstrap v2.3.3的自定义版本,这是.css中的默认标头,请注意最后一条注释行:
/*!
* Bootstrap v2.3.2
*
* Copyright 2013 Twitter, Inc
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world by @mdo and @fat.
*/
你想达到什么目的?如果是自定义,则您有一组要使用的文件,尽管这似乎是个坏主意。否则,我建议您使用v4.1.x的完整版本,因为这是当前版本。
打开package.json并查看依赖项。您应该看到:
"dependencies": {
...
"bootstrap-less": "^3.8.8"
...
}
5度以上