JS AJAX前台如何給後台類的函數傳遞參數_AJAX相關

來源:互聯網
上載者:User

將普通頁面的方法公布為WebMethod,以Javascript形式訪問。

1 方法要public static修飾,傳回型別最好是string。
2 方法前添加[WebMethod] 特性。
3 Client端訪問時要使用Post方法,和Json作為資料形式進行互動。否則會整頁HTML返回。
4 在jQuery訪問時,回調中的data.d才時真正的返回內容。
5 訪問URL為: http://abc.com/abc.aspx/GetTime 如有個GetTime的公用靜態方法。

例:
abc.aspx

[WebMethod]public static string GetTime(){return DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");}

---------------
指令碼(以jQuery為例調用)

$.ajax({url:url,method:"post",dataType:"json",contentType:"application/json; charset=UTF-8",success: function(data){$("#id").html(data.d); //見第3點}});
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.