JQuery 获取json数据$.getJSON方法的实例代码

2020-05-19 07:41:00易采站长站整理

                                strDeviceTr += “<td>  0.8</td>”;
                                strDeviceTr += “<td><lable name=”infor”> ” + item.workinghour + ” </lable></td>”;
                                strDeviceTr += “<td>  0.8</td>”;
                                strDeviceTr += “<td><lable name=”infor”> ” + item.workinghour + “</lable></td>”;
                                strDeviceTr += “<td>  </td>”;
                                strDeviceTr += “</tr>”;
                            });
                            $(“#infor”).append(strDeviceTr);
                        });
            }
        }
 
 ashx
 
 string innerid = CommonClass.Request.GetRequest<string>(“InnerID”, “”);
            string key = CommonClass.Request.GetRequest<string>(“key”, “”);
            string result = “”;
            if (key == “StockOutApp” && innerid != “”)
            {
                result = StockOutApp(innerid);
                context.Response.Write(result);