我想在一个网站上更新Bootstrap,但我不知道安装的版本。
如何在只有bootstrap.css和bootstrap.min.js文件的情况下识别引导程序版本?
CSS文件中没有版本,min.js文件包含以下注释。
/*!
* Bootstrap.js by @fat & @mdo
* http://www.apache.org/licenses/LICENSE-2.0.txt
*/
发布于 2019-09-05 23:09:56
您还可以通过浏览器中的javascript控制台检查引导程序版本:
$.fn.tooltip.Constructor.VERSION // => "3.3.7"
图片来源: https://stackoverflow.com/a/43233731/1608226
之所以在这里贴这个,是因为当我忘记在搜索中包括JavaScript时,我总是会遇到这个问题,结果是这个问题而不是上面的问题。如果这对你有帮助,也一定要给这个答案加分。
注意:对于较早版本的引导程序(少于3个左右),您可能需要在页面的JavaScript或CSS文件中搜索引导程序版本。刚刚在一个使用bootstrap 2.3.2的应用程序上遇到了这个问题。在这种情况下,(当前)最好的答案很可能是正确的,您需要搜索引导程序的源代码,找出它使用的版本。(增加了2020年9月18日,尽管自2020年8月13日以来一直在评论中)
发布于 2013-03-11 17:57:00
Bootstrap版本将显示在CSS文件的顶部。只需打开它并查看文件的顶部。
例如:
/*!
* Bootstrap v2.3.0
* 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.
*/
发布于 2013-03-11 17:57:31
应该在这一页的顶部注明。
就像这样。
/* =========================================================
* bootstrap-modal.js v1.4.0
* http://twitter.github.com/bootstrap/javascript.html#modal
* =========================================================
* 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