jquery ajax 再封装,对Jquery中的ajax再封装,简化操作示例

jQueryAjaxJson取值示例

$(function () {

jsonAjax("AjaxQuery.aspx", "type=json", "json", callBack);

jsonAjax("AjaxQuery.aspx", "id=1&name=2&type=text", "text", callBackTxt);

});

function callBack(data) {

$("#ddd").html('');

var json = eval(data); //数组

$.each(json, function (index, item) {

//循环获取数据

var name = json[index].Name;

var age = json[index].Age;

var sex = json[index].Sex;

$("#ddd").html($("#ddd").html() + "
" + name + "  " + age + "  " + sex + "
");

});

};

function callBackTxt(data) {

$("#ccc").html(data);

};

/**

* ajax post提交

* @param url

* @param param

* @param datat 为html,json,text

* @param callback回调函数

* @return

*/

function jsonAjax(url, param, datat, callback) {

$.ajax({

type: "post",

url: url,

data: param,

dataType: datat,

success: callback,

error: function () {

jQuery.fn.mBox({

message: '恢复失败'

});

}

});

}

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;

}

}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值