zoukankan      html  css  js  c++  java
  • GET 请求控制器 返回绑定后HTML

      //$.get("/Home/index/" + $("#S_BookName").val(), function (data) { //MVC控制器返回View(Model) 是没有绑定后的html页面
                //    console.log(data);
                //    //var Number1 = data.indexOf("<table");//返回索引 
                //    //var Number2 = data.indexOf("</table>");//第二个索引   //返回索引有误
    
                //    //console.log("1*" + Number1);
                //    //console.log("2*" + Number2);
                //    //console.log(data.substring(Number1, Number2 - Number1));
                //    //$("#tab1").replaceWith("HTML代码"); 
    
                //}); //执行get请求
           public ActionResult Index(string U,string P) //get/post都能接收   等于  //Request["U"] 只能接收u和p
            {
                ViewBag.U = U;
                //Request["U"];//GET/POST都能获取
                ViewBag.P = P;
                //Request.Form["P"];//不能获取GET只能获取POST
                return View();
            }
            public ActionResult Index(string U,string P) //get/post都能接收   等于  //Request["U"] 既能接收U和P 还能接收x和y
            {
                ViewBag.U = Request["x"];//GET/POST都能获取
                ViewBag.P = Request.Form["y"];//不能获取GET只能获取POST
                return View();
            }
    <script>
            function ppost() {
                console.log("ppost");
                $.ajax({
                    
                    type: "post",
    
                    url: "index",
                    data:{U:'1234',P:'000'},
    
                    async: false,//异步和同步都不刷新页面
                    
                    success: function (data) {
                        console.log(data);
                    }
                });     
            }
            function gget() {
                console.log("gget");
                $.ajax({
    
                    type: "GET",
    
                    url: "index",
                    data: { U: '1234', P: '000' },//等同于data:"U=1234&p=000"
    
                    async: false,
    
                    success: function (data) {
                        console.log(data);
                    }
                });
            }
        </script>
  • 相关阅读:
    nullptr和NULL
    tmux用于恢复远程屏幕
    如何改变git的默认路径
    scp拷贝文件
    C++头文件<bits/stdc++.h>
    MAME模拟器使用简单教程
    typescript接口扩展
    Typescript中的可索引接口 类类型接口
    typescript函数类型接口
    typescript静态属性 静态方法 抽象类 多态
  • 原文地址:https://www.cnblogs.com/enych/p/8268660.html
Copyright © 2011-2022 走看看