通过数据库查询的值怎样让checkbox显示checked
<tr><th>用途:</th><tdcolspan="3"><inputtype="checkbox"name="usetype[]"value="开放">开放<inp...
<tr>
<th>用途:</th>
<td colspan="3">
<input type="checkbox" name="usetype[ ]" value="开放" >开放
<input type="checkbox" name="usetype[ ]" value="高职">高职
<input type="checkbox" name="usetype[ ]" value="中职">中职
<input type="checkbox" name="usetype[ ]" value="培训">培训
<input type="checkbox" name="usetype[ ]" value="其他">其他
</td>
</tr> 展开
<th>用途:</th>
<td colspan="3">
<input type="checkbox" name="usetype[ ]" value="开放" >开放
<input type="checkbox" name="usetype[ ]" value="高职">高职
<input type="checkbox" name="usetype[ ]" value="中职">中职
<input type="checkbox" name="usetype[ ]" value="培训">培训
<input type="checkbox" name="usetype[ ]" value="其他">其他
</td>
</tr> 展开
展开全部
<%
string[] strs = new string[]{"开放","高职","中职","培训","其他"}
for(int i=0;i<strs.Length();i++){
string checked = "";
if(数据库查询值==strs[i])
checked="checked=\"checked\"";
%>
<input type="checkbox" name="usetype[ ]" value="<%=strs[i]%>" <%=checked %> /><%=strs[i]%>
<%}%>
差不多就这样,没有用编辑器,纯输入框,可能个别单词写错。。。。
string[] strs = new string[]{"开放","高职","中职","培训","其他"}
for(int i=0;i<strs.Length();i++){
string checked = "";
if(数据库查询值==strs[i])
checked="checked=\"checked\"";
%>
<input type="checkbox" name="usetype[ ]" value="<%=strs[i]%>" <%=checked %> /><%=strs[i]%>
<%}%>
差不多就这样,没有用编辑器,纯输入框,可能个别单词写错。。。。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |