學習:Jquery採用ajax調取WebService顯示表格)

來源:互聯網
上載者:User

 Jquery執行個體中關於Ajax調取資料多集中在頁面擷取,關於WebService調取介紹很少,這裡貼出代碼,也是舉例性質,後台根據自己情況進行更詳細的查詢返回。

這裡要說明幾點:

1、WebService地址必須是全稱;

2、資料返回(dataType)為xml,如果要返回Json,代碼需要調整;

3、參數寫法看執行個體;

頁面部分代碼:

 

<%...@ Page Language="C#" AutoEventWireup="true" CodeFile="a.aspx.cs" Inherits="a" %>

<!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 runat="server">
  <title>無標題頁</title>
  <script src="jquery.js"></script>
</head>
<body>
  <form id="form1" runat="server">
    <table id="example" border="1" cellpadding="4" cellspacing="0">
      <tr>
        <td>標題</td>
        <td>內容</td>
      </tr>
    </table>
    <p>
      <input type="button" id="btn" value="顯示" /></p>
     
    <script language="javascript" type="text/javascript">...
    $(document).ready(function()...{
      $("#btn").click(function()...{
        GetWebService("/myAddress/aa.asmx/GetExample",
          ...{title:"測試",content :"K!又是明天"},
          "#example",["Title","Content"]);
      });
    })
    function GetWebService(myUrl,dataPrams,tableId,arrFiledId)...{
      $.ajax(...{
        http://www.cnblogs.com/LeimOO/admin/myUrl,
        data: dataPrams,
        dataType: "xml",
        type: "POST",
        cache: false,
        success: function(xml)...{
          AddTd(xml,tableId,arrFiledId);
        },
        error:function(xml,status)...{
          alert(status);
        }
      });
    }
    function AddTd(xml,tableId,arrFiledId)...{
      var tb=$(tableId);
      //清空表,保留第一行
      tb.find("tr").each(function(i)...{
        if (i>0) $(this).remove();
      });
      //填充資料
      $(xml).find("Table1").each(function()...{
        var tr=$("<tr></tr>");
        for (var j=0;j<arrFiledId.length;j++)
          $("<td></td>").html($(this).find(arrFiledId[j]).text()).appendTo(tr);
        tr.appendTo(tb);
      })
    }
    </script>
  </form>
</body>
</html>

asmx代碼:

 

  [WebMethod]
  public DataSet GetExample(String title, String content)
  ...{
    DataSet ds = new DataSet();
    DataTable dt = new DataTable();
    dt.Columns.Add("Title", Type.GetType("System.String"));
    dt.Columns.Add("Content", Type.GetType("System.String"));
    DataRow dr = dt.NewRow();
    dr["Title"] = "甲方";
    dr["Content"] = "好了沒?";
    dt.Rows.Add(dr);
    dr = dt.NewRow();
    dr["Title"] = "乙方";
    dr["Content"] = "明天!"+DateTime.Now.ToString("yyyy-M-d H:m:s");
    dt.Rows.Add(dr);
    dr = dt.NewRow();
    dr["Title"] = title;
    dr["Content"] = content;
    dt.Rows.Add(dr);
    ds.Tables.Add(dt);
    return ds;
  }

 

文章來源:http://www.9yuer.com/thread-2057.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.