merge with cmdb

This commit is contained in:
ibuler
2015-11-15 19:57:25 +08:00
29 changed files with 2794 additions and 436 deletions

View File

@@ -135,3 +135,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(",");
}