$.ajax({
type: "get",
url: "http://localhost:27221/api/Charging/GetByModel
",
contentType: "application/json",
data: { ID: "1", NAME: "Jim", CREATETIME: "1988-09-11" },
success: function (data, status) {
if (status == "success") {
$("#div_test").html(data);
}
}
});