Bootstrap的使用一般有兩種方法:
引用線上的Bootstrap的樣式,
將Bootstrap下載到本地進行引用。
線上引用
基本範本如下:
<html> <head> <meta charset="UTF-8"> <title>Bootstrap引入</title> <!-- 新 Bootstrap 核心 CSS 文件 --> <link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.css"> <!-- jQuery文件。务必在bootstrap.min.js 之前引入 --> <script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script> <!-- 最新的 Bootstrap 核心 JavaScript 文件 --> <script src="http://cdn.bootcss.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> </head>
優點:不用本機安裝Bootstrap,也不用考慮引用時的路徑問題
缺點:一旦線上樣式掛了,那麼會影響整個頁面樣式的呈現
本地引用
將Bootstrap下載到本地。
直接存取上述程式碼中的3個網址來取得程式碼
去Bootstrap的官網http://v3.bootcss.com/ 和JQuery
的官網http: //jquery.com/ 下載對應的檔案
將需要的檔案放在專案下,方便引用
bootstrap的目錄結構如下:
bootstrap/ ├── css/ │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ └── bootstrap-theme.min.css.map ├── js/ │ ├── bootstrap.js │ └── bootstrap.min.js └── fonts/ ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2
最常用的是css/bootstrap.min.css、js/bootstrap.min.js
jquery.min.js可以在JQuery官網下載
最後,在對應檔案中引入即可。
優點:確保網路狀況不佳的情況下,頁面樣式仍可正常顯示
缺點:需要事先安裝或下載,引用時要考慮路徑問題。
以上是怎麼引入bootstrap的詳細內容。更多資訊請關注PHP中文網其他相關文章!