码迷,mamicode.com
首页 > Web开发 > 详细

jquery $.ajax 获取josn数据

时间:2014-08-21 22:30:34      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   java   os   io   for   

 

    <script type="text/javascript" src="jquery-1.9.1.js"></script>
    <script type="text/javascript">
        function test() {
            $.ajax({
                type: "get",
                cache: false,
                url: "../../ajax/Task.aspx",
                data: id =1, // URL后面参数
                success: function (json) {
                    json = eval("(" + json + ")");
                    $.each(json, function (i, item) {
                        
                        alert(parseInt(item.iname), parseInt(item.iid));
                    });
                },
                error: function (msg) {
                    alert("错误:" + msg);
                }
            });
        }
    </script>

 

 

 

后台代码:
public void ProcessRequest(HttpContext context)//只是大概个例子 为了学习
{
        context.Response.ContentType = "application/json";
        string[] Arraya = new string[] { "张三", "李四", "王二", "赵五" };
        string returns = "";
        returns = "{\"people\":[";
        for (int i = 0; i < Arraya.Length; i++)
        {
            returns += "[{\"iname\":\"" + Arraya[i] + "\",\"iid\":\"001\"}]" + (i != (Arraya.Length - 1) ? "," : "");
        }
        returns += "]};";
        context.Response.Write(returns);//返回之后 就是上面js里直接定义的json格式
    }

 

jquery $.ajax 获取josn数据,布布扣,bubuko.com

jquery $.ajax 获取josn数据

标签:style   blog   http   color   java   os   io   for   

原文地址:http://www.cnblogs.com/chenghu/p/3928162.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!