使用javascript启动切换开关

时间:2017-09-21 00:37:34

标签: javascript jquery toggle twitter-bootstrap-2

我可以使用HTML来启动引导切换,但不能使用Javascript API方法。基本上,第一个切换按钮有效,但使用API​​方法编写的第二个切换按钮只显示为一个复选框。感谢您的帮助,澄清我的代码中缺少的内容:

<script src="https://code.jquery.com/jquery.min.js"></script>
<link href="https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css" rel="stylesheet">
<script src="https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js"></script>

<input type="checkbox" data-toggle="toggle" data-on="Enabled" data-off="Disabled">

<input type="checkbox" id="toggle-two">
<script>
  $(function() {
    $('#toggle-two').bootstrapToggle({
      on: 'Enabled',
      off: 'Disabled'
    });
  })
</script>

谢谢!

1 个答案:

答案 0 :(得分:0)

我想出了答案。我的代码中没有必要使用function():

<script src="https://code.jquery.com/jquery.min.js"></script>
<script src="https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js"></script>
<link href="https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css" rel="stylesheet"/>

<input type="checkbox" id="toggle-two">
<script>
    $('#toggle-two').bootstrapToggle({
      on: 'Enabled',
      off: 'Disabled'
    });
</script>