在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
新建一般处理程序 public class Temp { public int Index { get; set; } public string Description { get; set; } public string ImagePath { get; set; } public DateTime MyDate { get; set; } } //数据源 List<Temp> listTemp = new List<Temp>() { new Temp(){ Index=1,ImagePath="Desert.jpg", Description="图片1",MyDate=DateTime.Now}, new Temp(){Index=2,ImagePath="Chrysanthemum.jpg", Description="图片2",MyDate=DateTime.Now}, new Temp(){Index=3,ImagePath="Penguins.jpg", Description="图片3",MyDate=DateTime.Now}, new Temp(){Index=4,ImagePath="Jellyfish.jpg", Description="图片4",MyDate=DateTime.Now}, new Temp(){Index=5,ImagePath="Tulips.jpg", Description="图片5",MyDate=DateTime.Now} }; public void ProcessRequest(HttpContext context) { string index = context.Request["Index"]; string jsonStr = string.Empty; foreach (var item in listTemp) { if (item.Index.ToString() == index) { JavaScriptSerializer serializer = new JavaScriptSerializer(); jsonStr = serializer.Serialize(item); //序列化为json格式 break; } } context.Response.Write(jsonStr); } 前台JS代码 $.getJSON("imageChange.ashx", { Index: i - 1 }, function (result) { $("#<%=lblDescription.ClientID %>").text(result.Description); $("#<%=Image1.ClientID %>").attr("src", path + result.ImagePath.substr(result.ImagePath.lastIndexOf('/') + 1)); var d = eval("new " + result.MyDate.replace(/\//g, "")); $("#<%=lblDate.ClientID %>").text(Todate(d.ToLocalTime().toString())); }); 前台JS代码 以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,同时也希望多多支持极客世界! |
请发表评论