jsp页面绑定
如何在jsp页面绑定单选框?各路大神帮帮忙,方法越多越好,谢谢……
jsp页面绑定
jsp
------解决方案--------------------没看懂。。。。。。。。。。。直接
------解决方案--------------------两种方法
1、struts2的<s:select>标签 比如<s:select list="personList" listKey="id" listValue="name" />
2、用js 动态组装slect标签
------解决方案--------------------注意,要先从前面获取性别的值
------解决方案--------------------不好意思写错了,应该是<c:if test="${sex == 1}"><input type="radio" name="sex" value="1" checked/>男<input type="radio" name="sex" value="0" />女</c:if> <c:if test="${sex == 0}"><input type="radio" name="sex" value="1" />男<input type="radio" name="sex" value="0" checked />女</c:if>