摘要: public static string GetJosnValue(string json, string key) { string result = string.Empty; if (!string.IsNullOrEmpty(json)) { key = "\"" + key.Trim('"') + "\""; int index = json.IndexOf(key) + key.Length + 1; if (i... 阅读全文
posted @ 2013-01-24 13:41 王者杂货铺 阅读(194) 评论(0) 推荐(0) 编辑
摘要: $.ajax({ type: "post", url: "?action=DownLoadExcel", data:"table='"+3+"'", beforeSend: function (XMLHttpRequest) { }, success: function (data, textStatus) { alert(data); }, complete: function (XMLHttpRequest, textStatus) { }, error: function () { } }); 阅读全文
posted @ 2013-01-24 13:11 王者杂货铺 阅读(161) 评论(0) 推荐(0) 编辑