사이트에서 Bootstrap을 업데이트하고 싶지만 설치된 버전을 모릅니다.
bootstrap.css 및 bootstrap.min.js 파일만으로 부트 스트랩 버전을 식별하려면 어떻게해야합니까?
CSS 파일에는 버전이 없으며 min.js 파일에는 다음 주석이 포함되어 있습니다.
/*!
* Bootstrap.js by @fat & @mdo
* Copyright 2012 Twitter, Inc.
* http://www.apache.org/licenses/LICENSE-2.0.txt
*/
답변
상단에 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 이전 버전 인 경우 여기 에 업그레이드에 대한 세부 정보가 있습니다 .
답변
브라우저의 자바 스크립트 콘솔을 통해 부트 스트랩 버전을 확인할 수도 있습니다.
$.fn.tooltip.Constructor.VERSION // => "3.3.7"
크레딧 : https://stackoverflow.com/a/43233731/1608226
검색에 JavaScript를 포함하는 것을 잊고 위의 질문 대신이 질문에 끝날 때 항상이 질문을 발견했기 때문에 여기에 게시하십시오. 이것이 도움이된다면 해당 답변도 찬성표를 보내주십시오.
답변
방법 1
에 Package.json
"dependencies": {
// ...
"bootstrap": "4.1.3"
// ...
}
방법 2
node_modules
폴더를 열고 그 아래에bootstrap
폴더 검색 및 열기- 이제 다음 파일에서 버전 번호를 볼 수 있습니다.
package.json
scss/bootstrap.scss
또는css/bootstrap.css
README.md
- 그리고 다른 파일도 있습니다
답변
부트 스트랩 버전은 CSS 파일 상단에 표시됩니다. 파일을 열고 파일 상단을 확인하기 만하면됩니다.
예 :
/*!
* Bootstrap v2.3.0
*
* 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.
*/
답변
Shoud는 페이지 상단에 명시됩니다.
같은 것.
/* =========================================================
* 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)을 찾고 docblock을 읽는 것입니다. 다음과 같은 내용을 볼 수 있습니다.
Bootstrap v3.3.6 (http://getbootstrap.com)
답변
파일이나 폴더를 검색하지 않고이를 수행하는 쉬운 방법은 다음과 같습니다.
- 브라우저에서 웹 페이지 열기
- ctrl + U 누르기
- boostrap.min.js 또는 boostrap.min.css를 검색 한 다음 클릭합니다 (소스 파일이 열립니다).
- 첫 번째 줄 (주석)에 부 스트랩 버전이 표시됩니다.