Bootstrap Switch是一款輕量級插件,能夠給選擇框設置相似於開關的樣式javascript
它是依賴於Bootstrap的一款插件css
下載地址html
在線引用java
由於它是依賴於Bootstrap的一款插件,因此,在引入以前要先引入Bootstrap樣式python
<link rel="stylesheet" type="text/css" href="/static/plugin/bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="/static/plugin/switch/bootstrap-switch.min.css"> <script src="/static/plugin/bootstrap/js/bootstrap.min.js"></script> <script src="/static/plugin/switch/bootstrap-switch.min.js"></script>
# 定義一個選擇框 <input type="checkbox" name="test"> # 給選擇框應用樣式 <script type="text/javascript"> $("[name='test']").bootstrapSwitch(); </script>
除了默認的樣式,還能夠經過給input框設置屬性的方式給它自定義一些樣式web
data-size="..."bootstrap
Mini 迷你插件
Small 小號orm
Normal 正常cdn
Large 大號
data-on-color="..."
data-off-color="..."
data-on-text="..."(str類型)
data-off-text="..."
data-handle-width=".."(int類型)
data-label-width="..."(int類型)
readonly=""
disabled=""
更多