标签:arp str name default word .ajax alert archive www.
$.ajax({
url: "Default.aspx/aaaa", async: false, type: "POST", contentType: "application/json; charset=utf-8", dataType: "json", data: {name:"Tom",content:"hello"}, success: function(data) { alert(data.d); }, error: function() { alert("error!"); }});using System.Web.Services;
using System.Web.Script.Services;[WebMethod]public static string aaaa(string name,string content){ return name + ":" + content;}标签:arp str name default word .ajax alert archive www.
原文地址:https://www.cnblogs.com/zhaogaojian/p/9711877.html