91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ajax與json 獲取數據并在前臺使用簡單實例

發布時間:2020-09-19 17:35:04 來源:腳本之家 閱讀:136 作者:lqh 欄目:web開發

用ajax獲取后臺數據,返回json數據,怎么在前臺使用呢?

后臺


if (dataType == "SearchCustomer")
        {
          int ID;
          if (Int32.TryParse(CustomerID, out ID))
          {
            string s = GridComputer.GridCustomer.getCustomer(1, 1, ID);
            if (s == null)
            {
              context.Response.ContentType = "text/plain";
              context.Response.Write("[{\"name\":無用戶,\"id\":\"0\",\"company\":\"無用戶\"}]");
            }
            else { context.Response.Write(s); }
          }
 
        } 

前臺


 $(document).ready(function () {
      $("#Button3").click(
    function (SucCallback) {
      $.ajax(
      {
        type: "get",
        url: 'GridDatas.ashx', //后臺處理程序  
        dataType: 'json',   //接受數據格式  
        data: 'DataType=SearchCustomer&CustomerID=' + document.getElementById("Text3").value,     //要傳遞的數據  
        success:SucCallback,
        error: function () { alert("error"); }
      });
    })
    })

參考代碼

grid.getCustomer(1,2,function (data) {
    var list = '<p>' + tree_GridInfo._name + '的用戶有</p><br>';
    list += '<table id="customers"><tr><th>姓名</th><th>電話</th></tr> ';
    $.each(data, function (i, n) {
      list += '<tr onclick="showUser(' + 1 + ')"><td>';
      list += n.name + '</td>' + '<td>' + n.company;
      list += '</td></tr>';
    });
    $("#SearchResult").html(list)

看你的json數據是列表還是單個了,就一條就無需中括號了

context.Response.Write("{\"name\":無用戶,\"id\":\"0\",\"company\":\"無用戶\"}");

$(document).ready(function () {
      $("#Button3").click(
    function (SucCallback) {
      $.ajax(
      {
        type: "get",
        url: 'GridDatas.ashx', //后臺處理程序  
        dataType: 'json',   //接受數據格式  
        data: 'DataType=SearchCustomer&CustomerID=' + document.getElementById("Text3").value,     //要傳遞的數據  
        function (dataJson) {
           alert(dataJson.Name);
           alert(dataJson.Id);
        },
        error: function () { alert("error"); }
      });
    })
    })

 感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

文登市| 施甸县| 台中市| 百色市| 曲沃县| 宁城县| 靖安县| 满洲里市| 西盟| 南乐县| 扎赉特旗| 美姑县| 富裕县| 陵川县| 静宁县| 蒙山县| 尚义县| 崇阳县| 深泽县| 原阳县| 都匀市| 班戈县| 承德县| 保靖县| 德令哈市| 环江| 本溪| 新疆| 喜德县| 噶尔县| 灌阳县| 苍南县| 汽车| 南澳县| 尤溪县| 凌源市| 昌图县| 武威市| 顺昌县| 明星| 汕头市|