1,979
社区成员
发帖
与我相关
我的任务
分享 $("#btnsubmit3").click(function () {
$.ajax({
type: "POST",
url: "../Ajax-Rpc/Default.ashx/GetStr",
data: null,
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function (data) {
alert(data.d);
},
error: function (err) {
alert(err);
}
});
return false;
}) [System.Web.Services.WebMethod]
public static string GetStr()
{
return "Hello Ajax!";
}