首頁  >  文章  >  web前端  >  bootstrap-switch如何設定初始值

bootstrap-switch如何設定初始值

angryTom
angryTom原創
2019-08-01 13:48:494585瀏覽

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 。程式碼如下:




    
    this is a bootstrap-switch test
    
    
    
    
    
 
    


 

bootstrap-switch如何設定初始值bootstrap-switch如何設定初始值

也可以用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(){
            $(&#39;#mySwitch input&#39;).bootstrapSwitch({
                onText:&#39;On&#39;,
                offText:&#39;Off&#39;
            });
        })
    </script>
</head>
<body>
<br>
<div  id="mySwitch">
    <input type="checkbox" checked  data-on-text="YES" data-off-text="NO"/>
</div>
</body>

bootstrap-switch如何設定初始值bootstrap-switch如何設定初始值

#

以上是bootstrap-switch如何設定初始值的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn