zoukankan      html  css  js  c++  java
  • ajax 简单案例

    前台

    <script type="text/javascript"> 
    function userdel(id) {
    alert("dd");
        if (confirm('确定删除编号为' + id + '管理员吗')) {
            $.ajax({
                type: "get",
                url: "WebForm1.aspx",
                cache: false,
                async: false,
                datatype: "json",
                data: { "flag": "删除管理员", "id": id },
                success: function (data) {
                alert(data);
                    // 字符串拼接
                    $("#div_user").html(data);
                }
            })
        }
        }

    </script>

    <body>
        <form id="form1" runat="server">
        <div id="div_user">
            <input type="button" value="不满意,重新拍" name="Submit0" id="Button1" onclick="userdel(4)" />
        </div>
        </form>

    后台

    protected void Page_Load(object sender, EventArgs e)
            {
                string ret_context = "";
                string flag =Request["flag"];
               
                string id = Request["id"];
                switch (flag)
                {
                    case "删除管理员": ret_context = "成功"; break;
                    default: ret_context = "系统错误"; break;
                }
                Response.ContentType = "text/plain";
                Response.Write(ret_context);
            }

  • 相关阅读:
    形态学权重图像去噪
    druid配置
    @mapper个人理解
    mybatis自动生成的bean接口在service层找不到
    type-aliases-package的作用
    windows查询端口是否被占用
    idea中使用lombok注解无效
    springboot+dubbo问题记录
    springboot跳转到其他controller
    BigDecimal做减法计算
  • 原文地址:https://www.cnblogs.com/110abcd/p/5550146.html
Copyright © 2011-2022 走看看