目前用的Bootstrap版本为3.3.7
Bootstrap包本身未包含jQuery,需要自行下载
Bootstrap的github上,[Bower.json](https://github.com/twbs/bootstrap/blob/v3.3.7/bower.json)写明了各版本和jQuery的对应关系。
Bootstrap3.3.7对应jQuery版本为:1.9.1 -- 3
定制一个好看的文件选择按钮,目前主流方法为:
~~~
<label class="btn btn-default btn-file">
Browse <input type="file" style="display: none;">
</label>
~~~