jsp复选框功能怎么实现
实体类里定义了privateBooleandict_is_editable;//是否可编辑1-可以;0-不可以添加和编辑jsp页面都有“是否可编辑”的复选框,如何实现其功...
实体类里定义了private Boolean dict_is_editable;//是否可编辑 1-可以;0-不可以
添加和编辑jsp页面都有“是否可编辑”的复选框,如何实现其功能 展开
添加和编辑jsp页面都有“是否可编辑”的复选框,如何实现其功能 展开
1个回答
展开全部
这个不应该用复选框,应该用单选框,回显的时候如下
<input type="radio" name="z" value="0" <c:if test="${dict_is_editable==1}"checked='checked' </c:if>>是
<input type="radio" name="z" value="1" >否<c:if test="${dict_is_editable==0}"checked='checked' </c:if>>
大概就是这个意思。
<input type="radio" name="z" value="0" <c:if test="${dict_is_editable==1}"checked='checked' </c:if>>是
<input type="radio" name="z" value="1" >否<c:if test="${dict_is_editable==0}"checked='checked' </c:if>>
大概就是这个意思。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询