0

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

<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>

<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>

4

1 回答 1

3

首先从以下位置更正您的 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();

编解码示例

于 2015-10-28T18:08:17.340 回答