bootstrap 的環境至少須要3個文件:bootstrap.min.css 、jquery.mis.js 、bootstrap.min.jscss
所需文件能夠從jquery官網和bootstrap中文網中能夠下載。html
這3個文件是的引入是有順序的,若是順序不正確,則bootstrap不能正常執行,順序爲:html5
bootstrap.min.cssjquery
query.mis.jsbootstrap
bootstrap.min.js瀏覽器
這樣,bootstrap 環境就搭建完成了!ui
完整代碼以下:spa
<!DOCTYPE html><!-- HTML5文檔 --> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- IE瀏覽器的接下 --> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- 視窗的設置 --> <!-- 上述3個meta標籤*必須*放在最前面,任何其餘內容都*必須*跟隨其後! --> <title>Bootstrap 101 Template</title> <!-- Bootstrap --> <link href="../bootstrap-3.3.5-dist/css/bootstrap.min.css" rel="stylesheet"> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="//cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <h1>hello world</h1> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="../bootstrap-3.3.5-dist/js/jquery-1.9.1.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="../bootstrap-3.3.5-dist/js/bootstrap.min.js"></script> </body> </html>