This commit is contained in:
root
2015-11-03 23:53:12 +08:00
parent 0c0f05b6d9
commit 159398b391
6 changed files with 317 additions and 460 deletions

View File

@@ -119,3 +119,11 @@ function selectAll(){
// })
//}
function getIDall() {
var check_array = [];
$(".gradeX input:checked").each(function () {
var id = $(this).attr("value");
check_array.push(id);
});
return check_array.join(",");
}