zoukankan      html  css  js  c++  java
  • ajax访问 aspx.cs后台

    --前台
    $.ajax({ 
    type: "POST", 
    contentType: "application/json", 
    url: "WebForm2.aspx/GetUserName", 
    data: "{}", 
    dataType: "json", 
    success: function(){.......} 
    }); 

    --list集合

    $.ajax({
    type: "POST",
    contentType: "application/json",
    url: "DeHx.aspx/GetUserName",
    data: "", // data:"{uid:"+str+"}",
    dataType: "json",
    success: function(data){
    $.each(data, function (key, val) {
    var te = eval(data[key]);
    alert(te);
    });
    }
    });


    --后台

    [WebMethod(EnableSession = true)]
    public static string GetUserName()  //(string  uid)
    {
    return "123";
    }



  • 相关阅读:
    测试理论
    字符串
    类的无参方法
    类和对象
    数组
    循环结构
    选择结构
    java——面对对象
    android通知的基本用法
    Git的基本使用
  • 原文地址:https://www.cnblogs.com/momjs/p/5724801.html
Copyright © 2011-2022 走看看