ASP checkbox根据ACCESS数据库里的记录有无,显示选中或未选中状态

<html><body><inputtype="checkbox"name="c"id="c"value="1"onClick="checkbox()"/>1月<inpu... <html><body> <input type="checkbox" name="c" id="c" value="1" onClick="checkbox()" />1月 <input type="checkbox" name="c" id="c" value="2" onClick="checkbox()" />2月 <input type="checkbox" name="c" id="c" value="3" onClick="checkbox()" />3月 <input type="checkbox" name="c" id="c" value="4" onClick="checkbox()" />4月 <input type="checkbox" name="c" id="c" value="5" onClick="checkbox()" />5月 <input type="checkbox" name="c" id="c" value="6" onClick="checkbox()" />6月</body></html>数据库的记录为数组型式(1,2,3,)则1月、2月、3月为选中状态。 展开
 我来答
百度网友577f80d
2014-11-09 · TA获得超过791个赞
知道小有建树答主
回答量:1352
采纳率:66%
帮助的人:531万
展开全部
<%
function OnMonth(m)
dm="1,2,3," '获取数据库中的月份记录值
dm=left(dm,(len(dm)-1)) '过滤掉最右边的,
tm=split(dm,",") '分割真实月份数据
for i=0 to ubound(tm)
if tm(i)=m then
response.write("checked")
end if
next
end function
%>
<html>
<body>
<input type="checkbox" name="c" id="c" value="1" onClick="checkbox()" <%=OnMonth("1")%> />1月
<input type="checkbox" name="c" id="c" value="2" onClick="checkbox()" <%=OnMonth("2")%> />2月
<input type="checkbox" name="c" id="c" value="3" onClick="checkbox()" <%=OnMonth("3")%> />3月
<input type="checkbox" name="c" id="c" value="4" onClick="checkbox()" <%=OnMonth("4")%> />4月
<input type="checkbox" name="c" id="c" value="5" onClick="checkbox()" <%=OnMonth("5")%> />5月
<input type="checkbox" name="c" id="c" value="6" onClick="checkbox()" <%=OnMonth("6")%> />6月
</body>
</html>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式