您好,登錄后才能下訂單哦!
這篇文章主要介紹bootstrap-switch設置初始值的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
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。代碼如下:
<!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(); }) </script> </head> <body> <div id="mySwitch"> <input type="checkbox" checked data-on-text="YES" data-off-text="NO"/> </div> </body> </html>
也可以用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設置初始值的方法的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。