zoukankan      html  css  js  c++  java
  • JQuery[13] Ajax的简单应用

    <!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>
        <title>Ajax</title>
        <script src="../Scripts/jquery-1.4.1.js" type="text/javascript"></script>
        <script type="text/javascript">
            $(function () {
                //$.get / $.post内部均调用$.ajax
    
                //无参数ajax请求
                $("#btnGetTime").click(function () {
                    $.post("Ajax14-1.ashx", function (Returns, Status) {
                        if (Status == "success")
                            $("#txtTime").val(Returns);
                        else
                            alert("请求失败");
                    });
                });
    
                //有参数
                $("#btnInput").click(function () {
                    $.post("Ajax14-2.ashx", { "input": $("#txtInput").val() }, function (Returns, Status) {
                        if (Status == "success")
                            alert(Returns);
                        else
                            alert("请求失败");
                    });
                });
            });
        </script>
    </head>
    <body>
        <input id="txtTime" type="text" readonly="readonly" />
        <input id="btnGetTime" type="button" value="获得时间" />
    
        <input id="txtInput" type="text" />
        <input id="btnInput" type="button" value="发送字符串" />
    </body>
    </html>
    

      Ajax14-1.ashx Code:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    
    namespace ImitationBaiduPostBar.JQuery
    {
    	/// <summary>
    	/// Ajax14 的摘要说明
    	/// </summary>
    	public class Ajax14 : IHttpHandler
    	{
    
    		public void ProcessRequest(HttpContext context)
    		{
    			context.Response.ContentType = "text/plain";
    			//context.Response.Write("Hello World");
    			context.Response.Write(DateTime.Now.ToString());
    		}
    
    		public bool IsReusable
    		{
    			get
    			{
    				return false;
    			}
    		}
    	}
    }
    

      Ajax14-2.ashx Code:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    
    namespace ImitationBaiduPostBar.JQuery
    {
    	/// <summary>
    	/// Ajax14_2 的摘要说明
    	/// </summary>
    	public class Ajax14_2 : IHttpHandler
    	{
    
    		public void ProcessRequest(HttpContext context)
    		{
    			context.Response.ContentType = "text/plain";
    			//context.Response.Write("Hello World");
    			context.Response.Write(string.Format("你输入了:{0}",
    				context.Request.Form["input"]));
    		}
    
    		public bool IsReusable
    		{
    			get
    			{
    				return false;
    			}
    		}
    	}
    }
    

      

    My New Blog : http://blog.fdlife.info/ The more you know, the less you believe.
  • 相关阅读:
    vue删除表格内的数据后局部刷新页面
    git到GitHub的操作和遇到的一些问题
    git push失败
    导入小程序错误
    WebStorm安装
    Office安装时报错1907的解决方法
    转战物联网·基础篇11-物联网架构与互联网及普通硬件项目的本质差异及重点概述
    转战物联网·基础篇10-物联网架构硬件端的特点及行业应用,对初创项目的选型建议
    Windows系统Git配置教程(Git配置git config)
    Windows7安装PowerShell5.1方法(Flutter新版本需要)
  • 原文地址:https://www.cnblogs.com/ForDream/p/2137711.html
Copyright © 2011-2022 走看看