ASP中怎样将未选中的复选框的值存入数据库?
页面如下——代码如下:<!--#includefile="conn.asp"--><%ifrequest("submit")<>""thenifrequest("fine...
页面如下——
代码如下:
<!--#include file="conn.asp"-->
<%
if request("submit")<>"" then
if request("fine")<>"" then
Conn.Execute("update works set fine=true Where id in("&Request.Form("fine")&")")
end if
End if
%>
代码只能将选中的复选框的值存入数据库,怎样将未选中的复选框的值存入数据库? 展开
代码如下:
<!--#include file="conn.asp"-->
<%
if request("submit")<>"" then
if request("fine")<>"" then
Conn.Execute("update works set fine=true Where id in("&Request.Form("fine")&")")
end if
End if
%>
代码只能将选中的复选框的值存入数据库,怎样将未选中的复选框的值存入数据库? 展开
2个回答
展开全部
这个是完整代码,但这个没有你上面的语句,它不会存入到数据库中,但在提交后,它会显示提交的结果。你可以测试。
测试通过后,可修改成为你自己需要的代码
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript" src="http://www.w3school.com.cn/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("form").submit(function(){//在提交表单时产生的事件
var arr_checkbox = new Array();//定义数组
$(":checkbox").not(":checked").each(function(n){//遍历所有未选中的checkbox
arr_checkbox[n]=$(this).val();//将其值赋给数组
});
$("#fine").val(arr_checkbox);//将数组以逗号分割的字符串传给隐藏域
});
});
</script>
</head>
<body>
<form action="" method="post">
<input type="hidden" id="fine" name="fine">
<input type="checkbox" name="checkbox" value="1" />
<input type="checkbox" name="checkbox" value="2" />
<input type="checkbox" name="checkbox" value="3" />
<input type="checkbox" name="checkbox" value="4" />
<input type="checkbox" name="checkbox" value="5" />
<input type="submit" value="submit" name="submit" />
</form>
<%= Trim(Request.Form("fine")) %>
</body>
</html>
复选框在未选中时的值相当于“空”,所以ASP是不能获取其值的。
但可以借助JS来实现。
由于最近我在学习JQ代码库,所以懒的写JS。给你一个JQ代码示例吧。
$(document).ready(function(){
$("form").submit(function(){//在提交表单时产生的事件
var arr_checkbox = new Array();//定义数组
$(":checkbox").not(":checked").each(function(n){//遍历所有未选中的checkbox
arr_checkbox[n]=$(this).val();//将其值赋给数组
});
$("#hidden1").val(arr_checkbox);//将数组以逗号分割的字符串传给隐藏域
});
});
以上是JQ代码,完整的代码,我放在附件中了,你可以参考
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询