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>