N'B*_*yev 6 checkbox jquery twitter-bootstrap bootstrap-modal bootstrap-4
Bootstrap Modal 的 popover 中有两个复选框。小提琴在这里。
HTML:
<div class="container-fluid">
<div class="row">
<div class="col-12">
<button type="button" class="btn btn-primary open-modal" data-toggle="modal" data-target="#bs-modal">
Open Modal
</button>
<div class="modal fade" id="bs-modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Bootstrap 4 Modal</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<button type="button" class="btn btn-secondary btn-sm bs-popover" data-container="body" data-toggle="popover">
Show Popover
</button>
<div id="popover-content">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="1"
id="default-checkbox" name="default-checkbox">
<label class="form-check-label" for="default-checkbox">
Default Checkbox
</label>
</div>
<br>
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="custom-checkbox" name="custom-checkbox" value="2">
<label class="custom-control-label" for="custom-checkbox">Custom Checkbox</label>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
Run Code Online (Sandbox Code Playgroud)
CSS:
.open-modal {
margin: 20px;
}
.modal-body {
min-height: 200px;
}
#popover-content {
display: none;
}
Run Code Online (Sandbox Code Playgroud)
JS:
$('.bs-popover').popover({
html: true,
content: function() {
return $('#popover-content').html();
},
title: 'Popover Title'
});
Run Code Online (Sandbox Code Playgroud)
1. 默认复选框的问题:我无法通过单击标签来检查它。
2. 自定义复选框问题:无法勾选。
为什么会这样?我该如何解决?任何帮助,将不胜感激。
将复选框包裹在标签标签中:
<div class="form-check">
<label class="form-check-label">
<input class="form-check-input" type="checkbox" value="1"/>
Default checkbox
</label>
</div>
Run Code Online (Sandbox Code Playgroud)
并将您的自定义复选框更改为:
<div class="form-group">
<label class="custom-control custom-checkbox">
<input type="checkbox" value="2" name="chbxTerms" class="custom-control-input">
<span class="custom-control-label" for="chbxTerms">Custom checkbox</span>
</label>
</div>
Run Code Online (Sandbox Code Playgroud)
工作plunker:http ://plnkr.co/edit/yy4sshzCnSmuso0XocOX?p=preview
归档时间: |
|
查看次数: |
7471 次 |
最近记录: |