bootstrap-switch没有加载

时间:2015-10-28 17:49:15

标签: twitter-bootstrap bootstrap-switch

我已经包含了所有的依赖项,我仍然无法弄清楚为什么它没有给我我想要的开关。我错过了什么吗?当我点击我的保存更改按钮时,我也无法获得发布数据。

<link href="bootstrap-3.3.5-dist/css/bootstrap.css" rel="stylesheet">
<link href="bootstrap-switch/css/bootstrap3/bootstrap-switch.css" rel="stylesheet">
<script> src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="bootstrap-3.3.5-dist/js/bootstrap.js"></script>
<script src="bootstrap-switch/js/bootstrap-switch.js"></script>

&#13;
&#13;
<h2 class="h4">State</h2>
<div class="bootstrap-switch bootstrap-switch-wrapper bootstrap-switch-id-switch-modal bootstrap-switch-animate bootstrap-switch-on" style="width: 102px;">
  <div class="bootstrap-switch-container" style="width: 150px; margin-left: 0px;">
    <span class="bootstrap-switch-handle-on bootstrap-switch-primary" style="width: 50px;">ON</span>
    <span class="bootstrap-switch-label" style="width: 50px;">&nbsp;</span>
    <span class="bootstrap-switch-handle-off bootstrap-switch-default" style="width: 50px;">OFF</span>
    <input id="switch-modal" type="checkbox" checked="">
  </div>
</div>
<button type="button" class="btn btn-primary" data-switch-get="state" data-dismiss="modal">Save changes</button>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

首先纠正你的jQuery脚本:

<script> src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>

要:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>

根据Bootstrap Switch文件:

您只需要输入您的输入:

<input id="switch-modal" type="checkbox" checked>

并在JavaScript中初始化它:

$('#switch-modal').bootstrapSwitch();

CODEPEN EXAMPLE