gpt4 book ai didi

javascript - Bootstrap Toggle 不适用于具有有限元素的禁用启用

转载 作者:行者123 更新时间:2023-12-03 00:39:01 25 4
gpt4 key购买 nike

我正在将 Bootstrap Toggle Library 与 Bootstrap4 一起使用,但是当我尝试控制该用户仅“打开”有限数量的元素时,我遇到了问题。这是我的 HTML 代码:

<div style="border:solid border-width: 1px;">
<li class="ui-state-default">
<input type="checkbox" name="checkImg" data-height="10" data-toggle="toggle" data-size="mini"data-onstyle="success" data-offstyle="danger">
Option 1
</li> </div>

所有 11 个元素都有相同的代码,而我的 Jquery:

$('input[name="checkImg"]').on('change', function (e) {
if ($('input[name="checkImg"]:checked').length > 3 ) {
console.log("In Condition");
$(this).prop('checked', false);
}
});

这是我将 4 个元素切换为“ON”时的结果照片: enter image description here

我可以看到条件是正确的,并检测到 3 个元素何时切换为“ON”,但我无法禁用其余的“False”输入,直到某些“On”元素切换为“OFF”。有人可以帮忙吗?

此外,我从 Bootstrap 中使用了禁用但没有工作。

谢谢大家。

编辑:

https://jsfiddle.net/5vr0c3w2/14/

最佳答案

您的脚本中有错误。尝试改变这一点:

$('input[name=checkImg]')

到此

$('input[name="checkImg"]')

我尝试纠正这个问题,脚本现在似乎可以工作。

编辑:我发现问题出在 Bootstrap-toggle 上,它使用不同类型的方法来检查和取消选中复选框。

您不仅需要取消选中该复选框,还必须将其父 div 的类从“btn-success”更改为“btn-danger off”。现在这个代码片段应该也适合您。

$('input[name="checkImg"]').on('change', function (e) {
if ($('input[name="checkImg"]:checked').length > 3 ) {
console.log("You can select no more than 3 options");
$(this).prop('checked', false);
$(this).parent().removeClass("btn-success");
$(this).parent().addClass("btn-default off");
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet"/>
<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"/>
<div class="container-fluid">
<!-- Primera Fila -->
<div class="col">
<div class="card">
<div class="card-header colorPlataforma">Imagenes Disponibles</div>
<div class="card-body fuenteTabla">
<div class="overflow">
<ul class="justify-content-center col-12 connectedSortable" id="sortable1">
<div style="border:solid border-width: 1px;">
<li class="ui-state-default">
<input type="checkbox" name="checkImg" data-height="10" data-toggle="toggle" data-size="mini"
data-onstyle="success" data-offstyle="danger">
Option 1
</li>
</div>
<div style="border:solid border-width: 1px;">
<li class="ui-state-default">
<input type="checkbox" name="checkImg" data-height="10" data-toggle="toggle" data-size="mini"
data-onstyle="success" data-offstyle="danger">
Option 2
</li>
</div>
<div style="border:solid border-width: 1px;">
<li class="ui-state-default">
<input type="checkbox" name="checkImg" data-height="10" data-toggle="toggle" data-size="mini"
data-onstyle="success" data-offstyle="danger">
Option 3
</li>
</div>
<div style="border:solid border-width: 1px;">
<li class="ui-state-default">
<input type="checkbox" name="checkImg" data-height="10" data-toggle="toggle" data-size="mini"
data-onstyle="success" data-offstyle="danger">
Option 4
</li>
</div>
</ul>
</div>
</div>
</div>
</div>
</div>

关于javascript - Bootstrap Toggle 不适用于具有有限元素的禁用启用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53538692/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com