本文介绍了Bootstrap:如果选中两次,则不会提交单选按钮值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的表单中,我有一组单选按钮:
In my form I have a group of radio buttons:
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-danger">
<input name="Status" type="radio" value="2">Failed</label>
<label class="btn btn-warning">
<input name="Status" type="radio" value="0">Pending</label>
<label class="btn btn-success active">
<input name="Status" type="radio" value="1">Success</label>
</div>
当我选择一个广播选项并提交表单时,所有功能都按预期工作,但如果我双击一个选项,该选项会被破坏,并不会随表单提交一起发送,除非我检查另一个选项。
When I select one radio option and submit the form everything works as expected, but if I double click on an option, that option gets broken and is not sent with a form submit unless I check another option.
看起来像 data-toggle =按钮
属性会导致此问题。
Looks like data-toggle="buttons"
attribute causes the issue.
以下是
Here's a Demo
推荐答案
刚发现这是一个已知的bug:
Just found that it's a known bug: https://github.com/twbs/bootstrap/issues/9920
这篇关于Bootstrap:如果选中两次,则不会提交单选按钮值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!