zoukankan      html  css  js  c++  java
  • Jquery与Json实现Ajax

    页面

    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="JqueryAjax.aspx.cs" Inherits="JqueryAjax" %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        <title>无标题页</title>
        <script type="text/javascript" src="JS/jquery-1.3.1.js"></script>
        <script type="text/javascript">
            function getData(){
                $("#list").html("");
                $.getJSON("jsondata.ashx",
                {name:"test",age:20},
                function(json){
                    $.each(json,function(i){
                        $("#list").append("<li>name:"+json[i].name+"&nbsp;Age:"+json[i].age+"</li>")
                    });
                });
            }
        </script>
    </head>
    <body>
        <form id="form1" runat="server">
            <input id="Button1" type="button" value="获取数据" onclick="getData()" />
            <ul id="list"></ul>
        </form>
    </body>
    </html>

    处理页面jsondata.ashx

    <%@ WebHandler Language="C#" class="jsondata" %>

    using System;
    using System.Web;

    public class jsondata : IHttpHandler {
       
        public void ProcessRequest (HttpContext context) {
            context.Response.ContentType = "text/plain";
            string data = "[{name:\"ants\",age:24},{name:\"lele\",age:23}]";//构建的json数据
            //下面的额两句是用来测试前台向此页面发出的查询字符
            string querystrname = context.Request.QueryString.GetValues("name")[0];//取查询字串的name值
            string querystage = context.Request.QueryString.GetValues("age")[0];//取查询字串的age值
            context.Response.Write(data);
        }
     
        public bool IsReusable {
            get {
                return false;
            }
        }

    }

  • 相关阅读:
    Android 富文本框实现 RichEditText
    mmap和普通文件读写的区别和比较 & mmap的注意点
    exit和_exit的区别
    绑定线程到特定CPU处理器
    软中断与硬中断 & 中断抢占 中断嵌套
    线程与信号处理
    内核信号处理 & CPU8个通用寄存器
    SIGSEGV 和 SIGBUS & gdb看汇编
    Linux内核态用户态相关知识 & 相互通信
    Linux进程空间分布 & 上下文
  • 原文地址:https://www.cnblogs.com/YuanShuai/p/Joe.html
Copyright © 2011-2022 走看看