时间:2021-04-16
以下的代码实现asp全选框删除的功能:
一.删除首页
<!--#include file="conn.asp"-->
<script>
function del () //用于判断记录有没有选中的函数
{
var flag=true;
var temp="";
var tmp;
if((document.form1.answer.length+"")=="undefined") {tmp=1}else{tmp=document.form1.answer.length}
if (tmp==1){
if (document.form1.answer.checked){
flag=false;
temp=document.form1.answer.value
}
}else{
for (i=0;i<document.form1.answer.length;i++) {
if (document.form1.answer[i].checked){
if (temp==""){
flag=false;
temp=document.form1.answer[i].value
}else{
flag=false;
temp = temp +","+ document.form1.answer[i].value
}
}
}
}
if (flag){ alert("对不起,你还没有选择!")}
else{ name=document.form1.name.value
//alert(name)
if (confirm("确实要删除?")){
window.location="delete.asp?id=" + temp;
}
}
return !flag;
}
</script>
</head>
<body>
<script language=Javascript>
function checkall(all)//用于判断全选记录的函数
{
var a = document.getElementsByName("answer");
for (var i=0; i<a.length; i++) a[i].checked = all.checked;
}
</script>
<%
exec="select * from asktitle order by id desc "
set rs=server.createobject("adodb.recordset")
rs.open exec,conn,1,1
%>
<table>
<form method="POST" id=form1 name=form1>
<tr>
<td>标题</td>
<td>删除</td>
<td>A</td>
<td>B</td>
<td>C</td>
<td>D</td>
</tr>
<%do while not rs.eof%>
<tr>
<td><input type="checkbox" name="answer" value="<%=rs("id")%>" ID="Checkbox1"></td>
<td><%=rs("asktitle")%></td>
<td><%=rs("aska")%></td>
<td><%=rs("askb")%></td>
<td><%=rs("askc")%></td>
<td><%=rs("askd")%></td>
</tr>
<%
rs.movenext
loop
rs.close
set rs=nothing
%>
<tr>
<td colspan="6"><input type="checkbox" name="chkall" value="on" onClick="checkall(this)" ID="Checkbox2">选中所有的显示
<input type="button" name="btnDelete" value="删除" onClick="del()" ID="Button1">
</td>
</tr>
</form>
</table>
二.删除页
<!--#include file="conn.asp"-->
<%
arrdel=Request("id")
exec="delete from asktitle where id in ("&arrdel&")"
conn.execute exec
conn.close
set conn=nothing
response.redirect "index.asp"
%>
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
批量删除多条记录,对于比较多的信息,如果没有批量删除功能是非常麻烦的。1.从数据库中拿一张表过来,写个复选框进行选择可以加全选复选框连接数据库什么的都不写啦代码
对复选框组的全选、全不选、不全选,获取选中的复选框的值的操作1.点击全选按钮,复选框组全部选中或者全部取消。2.实现全选按钮和复选框组的联动,当复选框组中有一个
本文实例为大家分享了jQuery实现简单全选框的具体代码,供大家参考,具体内容如下1.要求:(1)实现全选框勾选时其他复选框全部选中,全选框取消勾选时其他复选框
Jquery多选框的基本操作:支持全选、反选、取消全选的功能HTML正文:全选/全不选兴趣爱好:篮球足球羽毛球Javascript操作代码:$("#c1").c
功能:a:实现点击复选框的时候全选所有的子复选框,再点击取消所有复选框的选中状态b:有一个子复选框选中则父复选框选中所有子复选框都不选中则父复选框不选中复制代码