目前用的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>
~~~