web-dev-qa-db-ja.com

オン/オフ:スイッチボタンbootstrap

これが私のコードです-

<div id="normal-toggle-button" class="toggle-button" style="width: 100px; height: 25px;">
            <div style="left: 0px; width: 150px;"><input type="checkbox" checked="checked"><span class="labelLeft" style="width: 50px; height: 25px; line-height: 25px;">ON</span><label for="" style="width: 50px; height: 25px;"></label><span class="labelRight" style="width: 50px; height: 25px; line-height: 25px;">OFF </span></div>
        </div>
    </div>

スクリプト-

$(document).ready(function() {
        $('#normal-toggle-button').toggleButtons();
    });

このページにある基本的なボタンが欲しい- ボタンの切り替え

私は大丈夫です。しかし、私はまだ何かを逃しました。

ここにチェックイン- フィドル

7
Manoz

BootstrapSwitchの最も簡単な使用法

デモ

<link href="bootstrap-switch.css" rel="stylesheet">
<script src="jquery.js"></script>
<script src="bootstrap-switch.js"></script>

<input type="checkbox">
<script>
  $('input:checkbox').bootstrapSwitch();
</script>
10
Steely Wing