今天第一次在表单中用Bootstrap radio,发现后台获取不到值。研究后发现原来radio看起来选中了其实并没有选中,需要用代码先设置点击label后选中该label下的radio。
<div class="btn-group" id="color" data-toggle="buttons">
<label class="btn btn-info">
<input type="radio" name="color" value="1"> 红色
</label>
<label class="btn btn-info">
<input type="radio" name="color" value="2"> 绿色
</label>
<label class="btn btn-info">
<input type="radio" name="color" value="3"> 蓝色
</label>
</div>
jquery代码:
$("#color label").click(function(){
$(this).children("input").prop("checked",true);
});
然后提交表单
点击查看更多内容
3人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦