ホームページ  >  記事  >  ウェブフロントエンド  >  Jquery で ajax を再カプセル化し、操作を簡素化する example_jquery

Jquery で ajax を再カプセル化し、操作を簡素化する example_jquery

WBOY
WBOYオリジナル
2016-05-16 17:00:371327ブラウズ

复制代代码如下:




jQueryAjaxJson取值例









复制代代码如下:

using System;
//新增
using System.Web.Script.Serialization;
using System.Collections.Generic;

パブリック部分クラス AjaxQuery : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
//データ模拟,仅提供参考
string message = string.Empty;
string id = Request["id"];
string name = Request["name"];
文字列 gettype = Request["type"];
if (gettype=="text")
{
message = (id == "1" && name == "2") ? "ok符合条件" : "sorry不符合条件";
}
else if (gettype == "json")
{
List list = new List();
for (int i = 0; i {
学生 a = new Student();
a.名前 = "张三" i;
a.年齢 = i;
a.性別 = "男";
list.Add(a);
}
messagegage = new JavaScriptSerializer().Serialize (リスト);
}
else
{ }
Response.Write(message);
Response.End();
}
}
パブリック構造体 Student
{
public string Name;
public int Age;
public string Sex;
}
}

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。