码迷,mamicode.com
首页 > Web开发 > 详细

JSP---根据值让某一Radio处于选中状态

时间:2014-07-16 11:50:56      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:io   c   type   js   jsp   value   

<tr>
<td>
性别
</td>
<%
String sex = student.getStud_sex();
%>
<td>
<input type="radio" value="男" name="stud_sex"
<%if (sex.equals("男"))
out.print("checked");%> />

<input type="radio" value="女" name="stud_sex" <%if (sex.equals("女"))
out.print("checked");%> />

</td>
</tr>

JSP---根据值让某一Radio处于选中状态,布布扣,bubuko.com

JSP---根据值让某一Radio处于选中状态

标签:io   c   type   js   jsp   value   

原文地址:http://www.cnblogs.com/beast-king/p/3847985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!