| | |
| | | //批量删除 |
| | | function onAllDelete() { |
| | | var deleteKeyIds = ""; |
| | | $(":checkbox").each( |
| | | $("input[name='depart']").each( |
| | | function () { |
| | | if ($(this).is(":checked")) { |
| | | deleteKeyIds += $(this).val() + ","; |
| | |
| | | $("#deleteKeyIds").val(deleteKeyIds); |
| | | } |
| | | } |
| | | |
| | | |
| | | function changedepartment(departid) { |
| | | |
| | | |
| | | if ($("#department" + departid).is(':checked')) { |
| | | $(".depart" + departid).show(); |
| | | $(".spann" + departid).show(); |
| | | } else { |
| | | $(".depart" + departid).hide(); |
| | | $(".spann" + departid).hide(); |
| | | $(".depart" + departid).attr('checked', false); |
| | | } |
| | | } |
| | | </script> |
| | | </head> |
| | | <body> |