java中保存复选框的值,插入到数据库中用哪种方法??详细点给分!!!
5个回答
展开全部
<head>
<script type="text/javaScript">
function getValue(){
var box= document.getElementsByName("checkBox1");
var boxValue="";
for(var i=0;i<box.length;i++){
if(box[i].checked==true){
boxValue+=box[i].value+"#";//将选中的值累加
}
}
document.getElementById("setValue").value=boxValue;//将选中的值赋给hidden,方便在后台取出
}
</script>
</head>
<body>
<input type="checkBox" name="checkBox1" value="1"/>
<input type="checkBox" name="checkBox1" value="2"/>
<input type="checkBox" name="checkBox1" value="3"/>
<input type="checkBox" name="checkBox1" value="4"/>
<input type="hidden" id="setValue" name="vlaue"/>
<input type="button" value="提交" onclick="getValue();"/>
</body>
在后台
String[] string = request.getParameter("value").split("#");
for(int i=0;i<string.length;i++){
System.out.println(string[i]);//string[i]就是页面中被选中的值
}
其实这是一种比较笨的方法,不过胜在通用。
<script type="text/javaScript">
function getValue(){
var box= document.getElementsByName("checkBox1");
var boxValue="";
for(var i=0;i<box.length;i++){
if(box[i].checked==true){
boxValue+=box[i].value+"#";//将选中的值累加
}
}
document.getElementById("setValue").value=boxValue;//将选中的值赋给hidden,方便在后台取出
}
</script>
</head>
<body>
<input type="checkBox" name="checkBox1" value="1"/>
<input type="checkBox" name="checkBox1" value="2"/>
<input type="checkBox" name="checkBox1" value="3"/>
<input type="checkBox" name="checkBox1" value="4"/>
<input type="hidden" id="setValue" name="vlaue"/>
<input type="button" value="提交" onclick="getValue();"/>
</body>
在后台
String[] string = request.getParameter("value").split("#");
for(int i=0;i<string.length;i++){
System.out.println(string[i]);//string[i]就是页面中被选中的值
}
其实这是一种比较笨的方法,不过胜在通用。
展开全部
JSP页面例子:
<%@ page language="java" pageEncoding="gb2312"%>
<!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>
<title>无标题文档</title>
<script>
var check=true;
function check_all(){
if(check==false){
arr = document.getElementsByName("checkbox");
for(i=0;i<arr.length;i++){
arr[i].checked = false
}
check=true;
}
else{
arr = document.getElementsByName("checkbox");
for(i=0;i<arr.length;i++){
arr[i].checked = true
}
check=false;
}
}
</script>
</head>
<body>
<form action="" method=""post >
<input type="checkbox" name="checkbox" value="0" onclick='check_all();'/>
全选 <a href="../xtyhgl/delAllyg.do">删除</a>
<table width="200" border="1" cellspacing="0" cellpadding="0">
<tr>
<td><input type="checkbox" name="checkbox" value="100001"/></td>
<td>100001</td>
</tr>
<tr>
<td><input type="checkbox" name="checkbox" value="100003"/></td>
<td>100003</td>
</tr>
</table>
</form>
</body>
</html>
Action中代码:
如果是struts1.2在form类中定义属性 private String[] checkbox;
并为属性checkbox提供set和get方法。
如果是struts2 定义属性 private String[] checkbox;
并为属性checkbox提供set和get方法。
strust1:在action中获取form类中的值:String[] checkbox=request.getParameterValues("checkbox");这样在struts action中就获取了jsp中checkbox的值,循环取出。
strust2:在action中直接拿String[] checkbox的值,循环取出。
<%@ page language="java" pageEncoding="gb2312"%>
<!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>
<title>无标题文档</title>
<script>
var check=true;
function check_all(){
if(check==false){
arr = document.getElementsByName("checkbox");
for(i=0;i<arr.length;i++){
arr[i].checked = false
}
check=true;
}
else{
arr = document.getElementsByName("checkbox");
for(i=0;i<arr.length;i++){
arr[i].checked = true
}
check=false;
}
}
</script>
</head>
<body>
<form action="" method=""post >
<input type="checkbox" name="checkbox" value="0" onclick='check_all();'/>
全选 <a href="../xtyhgl/delAllyg.do">删除</a>
<table width="200" border="1" cellspacing="0" cellpadding="0">
<tr>
<td><input type="checkbox" name="checkbox" value="100001"/></td>
<td>100001</td>
</tr>
<tr>
<td><input type="checkbox" name="checkbox" value="100003"/></td>
<td>100003</td>
</tr>
</table>
</form>
</body>
</html>
Action中代码:
如果是struts1.2在form类中定义属性 private String[] checkbox;
并为属性checkbox提供set和get方法。
如果是struts2 定义属性 private String[] checkbox;
并为属性checkbox提供set和get方法。
strust1:在action中获取form类中的值:String[] checkbox=request.getParameterValues("checkbox");这样在struts action中就获取了jsp中checkbox的值,循环取出。
strust2:在action中直接拿String[] checkbox的值,循环取出。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
问题不是太清楚:看你的意思应该是在网页中保存在提交到数据库中吧,如果是这样就用:String[] str=request.getParameterValues("obj");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把复选框选中的值用逗号链接成一个字符串保存到数据库就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
java中?
该复选框在表单内
调教时 在处理页面
在处理页面设置好字符编码
request.getparametervalues("那个复选框的名字");
这返回的是一个String数组 所以你要用String数组装载
该复选框在表单内
调教时 在处理页面
在处理页面设置好字符编码
request.getparametervalues("那个复选框的名字");
这返回的是一个String数组 所以你要用String数组装载
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询