$.ajax({
type:"POST",
cache:false,
url:ctx+"/teacher/teaching/getTeacher",
dataType: "json",
//data:"id="+id,
success:function(data) {
$.each(data.teacherList, function(i,item){
alert(item.id+","+item.name);
});
}
); //end of ajax
jquery ajax 获取List
最新推荐文章于 2022-02-14 01:59:54 发布