//显示详细信息function showInfo(actionId, type) { $.post("Sys_Ajax/Sys_EmployInfo.ashx", { "type": "select", "actionId": actionId, "type2": type }, function (data, status) { if (status == "success") { var employs = $.parseJSON(data); $("#EmoplyList").empty(); //清空列表 var head = "姓名编号归属公司直属部门职位角色操作一操作二"; $("#EmoplyList").append(head); //加载列表 for (var i = 0; i < employs.length; i++) { var tr = "";// tr += "" + employs[i].Name + ""; tr += "" + employs[i].Name + ""; tr += "" + employs[i].Code + ""; tr += "" + employs[i].Corp + "" tr += "" + employs[i].Dept + ""; tr += "" + employs[i].Post + ""; tr += "" + employs[i].Role + ""; tr += "删除"; tr += "编辑"; tr += ""; $("#EmoplyList").append($(tr)); } //end for employs } //end if status }); //end post} //end showInfo