﻿

$(document).ready(function () {
    //    var fd = "[{\"ID\":\"1\",\"Name\":\"ch\"},{\"ID\":\"2\",\"Name\":\"ch2\"}]";
    //    var json = eval(fd);
    //    alert(fd);
    //    $.each(json, function (i) {
    //        $("#zp").append("<li>" + result[i].Name + "</li>")

    //    });
    $.post("http://www.gxzj.com.cn:83/GetInfoApi.aspx?Type=C&Num=5", { "to": "Get" }, function (result) {
        $.each(result, function (i) {
            $("#zp").append("<li>" + "<a target=\"_blank\" href=\"http://job.gxzj.com.cn/Application/HiringDetail.aspx?EnterpriseId=" + result[i].Id + "&CallingId=" + result[i].EnterpriseFileId + "\"" + ">" + result[i].Positions + "</a>" + "</li>" + "<li style=\" background:none;\">" + result[i].Enterprise + "</li>" + "<li style=\"background:none;\">" + result[i].UpdateTime + "</li>")


        });

    }, 'json');

    $.post("http://www.gxzj.com.cn:83/GetInfoApi.aspx?Type=P&Num=5", { "to": "Get" }, function (result) {
        $.each(result, function (i) {
            $("#jl").append("<li>" + "<a target=\"_blank\" href=\"http://job.gxzj.com.cn/Application/Resume.aspx?PersonalId=" + result[i].Id + "\">" + result[i].Name + "</a>" + "</li>" + "<li style=\" background:none;\">" + result[i].PurposePosition + "</li>" + "<li style=\"background:none;\">" + result[i].UpdateTime + "</li>")
        });

    }, 'json');

});

