JQuery使用Ajax调用后台方法
2021-02-08 22:15
标签:pre err ajax div webform eth erro pen web 调用含参方法: .cs: 调用无参方法: .cs: JQuery使用Ajax调用后台方法 标签:pre err ajax div webform eth erro pen web 原文地址:https://www.cnblogs.com/jizhiqiliao/p/13066924.html $("#btn").click(function () {
$.ajax({
type: "Post",
url: "WebForm1.aspx/GetStr",
data: "{‘str‘:‘aaa‘,‘str2‘:‘bbb‘}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
alert(data.d);
},
error: function (err) {
alert(err);
}
});
return false;
});
[WebMethod]
public static string GetStr(string str1, string str2)
{
return str1 + str2;
}
$(function () {
$("#btGetDataTable").click(function () {
$.ajax({
type: "Post",
url: "WebForm1.aspx/Traverse",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
$("#table1").append(data.d);
},
error: function (err) {
alert(err);
}
});
return false;
});
})
[WebMethod]
public static string Traverse()
{
}
文章标题:JQuery使用Ajax调用后台方法
文章链接:http://soscw.com/index.php/essay/52826.html