for(var j = 0; j < class_data.length; j++) {
var class_item = class_data[j];
/**********************用到了layui中的laytpl模块**********************/
class_html = laytpl(student_att_class_tpl).render(class_item);
if(typeof grade_arr[class_item.pid] === ‘undefined‘) {
grade_arr[class_item.pid] = ‘<div class="statictis_status_two_box">‘+class_html;
}else {
grade_arr[item.pid] += class_html;
}
}
for(var key in grade_arr) {
/****************索引数组中排出原型链上的属性**************************/
if(grade_arr.hasOwnProperty(key)) {
//给每一项再加上</div>并放入页面列表中
$(".legend_list_sta:eq(" + i + ")").nextUntil(".legend_list_sta",".statictis_status_one")
/********************filter和nextUnit是非常好用的*******************/
.filter(function() {
return $(this).attr(‘data-id‘) == key
})
.after(grade_arr[key] + ‘</div>‘);
}
}