Bootstrap中的radio设置值不能像我们平常给普通radio赋值那样,因为无效。
我们用Bootstrap框架里的radio组件,代码:
<div class="radio-list">
<label>
<input type="radio" value="1" name="gender" data-title="男"/> 男
</label>
<label>
<input type="radio" value="2" name="gender" data-title="女"/> 女
</label>
</div>
最后Bootstrap给我们生成的代码:
<div class="radio-list">
<label>
<div class="radio">
<span class="checked">
<input type="radio" value="1" name="gender" data-title="男" >
</sp