在struts2中傳值,一個表單裏有兩個方法,查詢時候用了表單中的方法,刪除時候必須經過節點獲取表單,而後在給它賦值指定方法。javascript
<%@ page language="java" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
%>
<!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=gbk" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<title>測試checkbox</title>
<script src="${dd}/js/jquery-1.6.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(function($){
//全選
$("#qianxuan").click(function(){
$("input[name='checkbox']").attr("checked","true");
}) html
//反選
$("#fanxuan").click(function(){
$("input[name='checkbox']").each(function(){
if($(this).attr("checked"))
{
$(this).removeAttr("checked");
}
else
{
$(this).attr("checked","true");
}
})
})java
}) jquery
function delete(){
var elements=document.testForm.elements;
var counter=elements.length;
for(i=0;i<counter;i++){
var element=elements[i];
if(element.checked == true){
document.forms.testForm.action="<%=path%>/action的名字";
document.forms.testForm.submit();
//上面紅色的註釋是經過節點獲取表單給指定的方法,提交表單。
return true;
}
}
alert("請選擇一條記錄進行操做");
return false; sql
}
</script>
</head>
<body>
<s:form action="action的方法名" namespace="/test" method="post" id="testForm" name="testForm">
<s:iterator value="pageView.records" >
< s:property value="name" /> 數據庫
<input type="checkbox" name="checkbox" value="<s:property value="id" />"/>
</s:iterator>
<input type="checkbox" name="checkbox" id="qianxuan" />
全選
<input type="checkbox" name="checkbox2" id="fanxuan" />
反選
</table>
</s:form> post
<input type="button" name="button4" id="button4" value="刪除"
onclick="delete();"/>
</body>
</html>
測試
後臺:ui
public void delete(){
String[] checkBoxs = request.getParameterValues("checkbox");
String a = "";
for(int i = 0;i<checkBoxs.length;i++){
a += checkBoxs[i]+",";
}
String[] ids = a.split(",");
Set<Integer> idslist = new HashSet<Integer>();
if (ids != null && ids.length > 0) {
for (String id : ids) {
idslist.add(new Integer(id));
}
}
//連接數據庫dao ,把idslist傳過去this
數據庫操做有兩種:1:直接放在in裏;2:循環,每一次都執行一次sql,效率上很慢。
注意的是,如果sql操做的是實體類則stmt.createQuery,如果表的話createNativeQuery;
直接放在in裏操做數據庫
String sql ="update table set status ='-1' where id in(:ids)";
stmt.createNativeQuery(sql).setParameter("ids", idslist).executeUpdate();
}