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月为选中状态。
展开
展开全部
<%
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>
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>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询