批量删除的js代码

  1. <script type="text/javascript">
  2. function seltAll(){
  3. var chckBoxSign = document.getElementById("ckb");       //ckb 全选/反选的选择框id
  4. var chckBox = document.getElementsByName("chckBox");    //所有的选择框其那么都是chckBox
  5. var num = chckBox.length;
  6. if(chckBoxSign.checked){
  7. for(var index =0 ; index<num ; index++){
  8. chckBox[index].checked = true;
  9. }
  10. }else{
  11. for(var index =0 ; index<num ; index++){
  12. chckBox[index].checked = false;
  13. }
  14. }
  15. }
  16. function deleSeltedRecords(){
  17. var chckBox = document.getElementsByName("chckBox");
  18. var num = chckBox.length;
  19. var ids = "";
  20. for(var index =0 ; index<num ; index++){
  21. if(chckBox[index].checked){
  22. ids += chckBox[index].value + ",";
  23. }
  24. }
  25. if(ids!=""){
  26. if(window.confirm("确定删除所选记录?")){
  27. $.ajax( {
  28. type : "post",
  29. url : '../g3/history-no!batchDelete.action?ids=' + ids, //要自行删除的action
  30. dataType : 'json',
  31. success : function(data) {
  32. alert("删除成功");
  33. window.location.href = "channel-no.action" ;
  34. },
  35. error : function(data) {
  36. alert("系统错误,删除失败");
  37. }
  38. });
  39. }
  40. }else{
  41. alert("请选择要删除的记录");
  42. }
  43. }
  44. </script>
上一篇:java中回调函数的理解


下一篇:使用navigator.geolocation来获取用户的地理位置信息