单选按钮的类型是啥?
Posted
技术标签:
【中文标题】单选按钮的类型是啥?【英文标题】:What's the type for radio button?单选按钮的类型是什么? 【发布时间】:2015-09-18 02:33:47 【问题描述】:我正在使用 XAMPP localhost 创建一个数据库。我的问题是我不知道数据库中单选按钮的类型是什么。请帮我解决它
这是我的代码:
<div class="form-group form-group-sm">
<label style="margin-top: 3px" class="col-sm-2 control-label" for="formGroupInputSmall">Priority</label>
<label style="margin-left: 15px; margin-bottom: 10px">
<label class="radio-inline">
<input type="radio" name="priority" id="high" value="">High</label>
<label class="radio-inline">
<input type="radio" name="priority" id="medium" value="">Medium</label>
<label class="radio-inline">
<input type="radio" name="priority" id="low" value="">Low</label>
</label>
</div>
【问题讨论】:
您可以使用的枚举数据类型:dev.mysql.com/doc/refman/5.0/en/enum.html 我通过更正缩进改进了代码块的格式。格式良好的代码更易于阅读和调试。我还从标题中删除了工具名称,因为它们不是必需的,可以作为标签的一部分添加。最后,我用 twitter-bootstrap 替换了 bootstrap 标签,因为我认为这就是你正在使用的。 Bootstrap 标签指向别的东西。 【参考方案1】:看起来您只是想构建一个表单以提交到数据库,所以就类型而言,radio
button 只是一个radio
按钮。
<input type="radio" name="radioOne" value="yes">Yes <br> <input type="radio" name="radioOne" value="no">No
您是指您的表单还是提交给数据库的内容?
【讨论】:
我是指提交给数据库 您能否扩展您的问题并添加任何可以更好地解释您遇到的问题的细节?以上是关于单选按钮的类型是啥?的主要内容,如果未能解决你的问题,请参考以下文章
使用 Twitter Bootstrap 切换单选按钮,获取表单输入的简洁方式是啥?