jsp 页面上如何用复选框加上javascript 删除选中的记录

发布网友 发布时间:2024-10-23 18:45

我来回答

1个回答

热心网友 时间:2024-11-07 01:47

给你几个javascript,一次可以同时删除多条记录
function checkAll(){
var checkOne=document.all("checkOne");
if(document.all("checkAll").checked){
for(var i=0;i<checkOne.length;i++){
checkOne[i].checked=true;
}
}else{
for(var i=0;i<checkOne.length;i++){
checkOne[i].checked=false;
}
}
}
function checkOne(){
var checkOne=document.all("checkOne");
var j=0;
for(var i=0;i<checkOne.length;i++){
if(!checkOne[i].checked){
document.all("checkAll").checked=false;
}else{
j++;
}
}
if(j==checkOne.length){
document.all("checkAll").checked=true;
}
}
function remove(){
var checkOne=document.all("checkOne");
var url="savedoc.jsp?idstr=";
if(typeof(checkOne)=="undefined"||checkOne==null){return;}
var checkBoxGroupValue=getCheckBoxGroupValue(checkOne);
if(checkBoxGroupValue.length<1){
alert("没有选中记录,无法进行删除!");
}else if(confirm("确认删除所选记录吗?")){
url+=checkBoxGroupValue;
//location.href=url;
window.open(url,'gd_detail','height=220, width=350, toolbar=no, menubar=no, scrollbars=yes, resizable=no, location=no, status=no');
}
}

function getCheckBoxGroupValue(cbg){
if(cbg==null) return "";
s="";
if(typeof(cbg)!='undefined' && cbg!=null){
if(typeof(cbg[0])=='undefined' || cbg[0]==null){
if(cbg.checked) s=cbg.value;
}else{
s="";
for(var i=0;i<cbg.length;i++){
if(cbg[i].checked){
s+=","+cbg[i].value;
}
}
s=s.substring(1);
//alert(s);
}
}
return s;
}

</script>
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com