bootstrapSwitch是一個很美觀的切換控件,官網上對它的介紹也很詳細。下面透過幾個demo快速上手bootstrapSwitch。
如果你想了解更多關於bootstrap的知識,可以點選:bootstrap教學
首先,引用對應的js和css文件,把checkbox放進class為「switch」的div中,再在js中初始化
$('#mySwitch input').bootstrapSwitch();
就可以使用bootstrapSwitch了。
其中input有兩個屬性data-on-text
和data-off-text
,分別為切換時顯示的文字,這裡設定為YES和NO 。程式碼如下:
this is a bootstrap-switch test
也可以用js設定這兩個屬性,選取input元素後,透過方法bootstrapSwitch({attribute:value})
修改屬性。程式碼如下:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>this is a bootstrap-switch test</title> <script src="jquery-2.2.4.js"></script> <script src="bootstrap.js"></script> <script src="bootstrap-switch.js"></script> <link rel="stylesheet" type="text/css" href="bootstrap.css"/> <link rel="stylesheet" type="text/css" href="bootstrap-switch.css"/> <script type="text/javascript"> $(function(){ $('#mySwitch input').bootstrapSwitch({ onText:'On', offText:'Off' }); }) </script> </head> <body> <br> <div id="mySwitch"> <input type="checkbox" checked data-on-text="YES" data-off-text="NO"/> </div> </body>
以上是bootstrap-switch如何設定初始值的詳細內容。更多資訊請關注PHP中文網其他相關文章!