这篇文章主要介是对jquery中的ajax再封装,简化操作示例进行了介绍,需要的朋友可以过来参考下,希望对大家有所帮助
jQueryAjaxJson取值示例
using System;
//新增
using System.Web.Script.Serialization;
using System.Collections.Generic;
public partial class AjaxQuery : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
//数据模拟,仅供参考
string messgage = string.Empty;
string id = Request["id"];
string name = Request["name"];
string gettype = Request["type"];
if (gettype=="text")
{
messgage = (id == "1" && name == "2") ? "ok符合条件" : "sorry不符合条件";
}
else if (gettype == "json")
{
List list = new List();
for (int i = 0; i < 50; i++)
{
Student a = new Student();
a.Name = "张三" + i;
a.Age = i;
a.Sex = "男";
list.Add(a);
}
messgage = new JavaScriptSerializer().Serialize(list);
}
else
{ }
Response.Write(messgage);
Response.End();
}
}
public struct Student
{
public string Name;
public int Age;
public string Sex;
}
} 以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!
相关推荐:
JQuery使用$.ajax和checkbox实现下次不在通知功能










