jsp 页面上如何用复选框加上javascript 删除选中的记录
展开全部
给你几个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){
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询