Как я могу установить переключатель bootstrap по умолчанию в положение ON? - PullRequest
0 голосов
/ 05 августа 2020

Я использую Bootstrap Switcher (https://bttstrp.github.io/bootstrap-switch/examples.html)

<p><input  type="checkbox" checked="checked" data-on-color="info" ></p>

<script src="js/jquery-3.3.1.js"></script>
<script src="js/highlight.js"></script>
<script src="https://unpkg.com/bootstrap-switch"></script>
<script src="js/main_switch.js"></script>

По умолчанию это выглядит так:

enter image description here

But I would like the switcher to be default switched to ON:

enter image description here

But even if I set it to checked, it is always OFF. I also tried:


But no change.

I also tried:

 

но без изменений

1 Ответ

2 голосов
/ 05 августа 2020

используйте: data-toggle="switch"

код: <input type="checkbox" data-toggle="switch" checked>

тест: https://jsfiddle.net/u38tq2r9/

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...