//***********单选 默认选中***********
<div class="row cl">
<label class="form-label col-3">是否强制更新:</label>
<div class="formControls col-5">
是:<input type="radio" value="1" name="state" <c:if test="${pd.state=='1'}">checked="checked"</c:if> >
否:<input type="radio" value="0" name="state" <c:if test="${pd.state==null || pd.state eq '0'}">checked="checked"</c:if>>
</div>
<div class="col-4"> </div>
</div>
HTML整理
原文:http://blog.51cto.com/jianboli/2045380