WebForm 页面ajax 请求后台页面 方法
程序员文章站
2022-06-02 22:23:03
这是前端code 这是xxx.aspx 页面内的方法 ......
function returnoperation(inventoryid) {
//入库 接口
if (confirm('你确认?')) {
$.ajax({
type: "post",
url: "xxx.aspx/instorage",
data: "{inventoryid:'"+inventoryid+"'}",//注意,json 对象外面 加 双引号
contenttype: "application/json",
datatype: "json",
success: function (r) {
if (r.d =="1") {
alert("入库成功");
} else {
alert("入库失败");
}
},
error: function (e) {
alert("错误是:" + e.responsetext);
}
})
} else {
}
}
这是前端code
[webmethod] //注意添加引用,方法为静态 public static string instorage(string inventoryid) { return inventoryid; }
这是xxx.aspx 页面内的方法
推荐阅读
-
PHP关于ajax中在Html页面方法传值有关问题
-
ci检测是ajax还是页面post提交数据的方法,ciajax_PHP教程
-
AJAX注册页面异步请求的方法实现
-
ci检测是ajax还是页面post提交数据的方法_php实例
-
ci检测是ajax还是页面post提交数据的方法_php实例
-
ci检测是ajax还是页面post提交数据的方法
-
vue axios 在页面切换时中断请求方法
-
react通过axios请求数据,用一个bol来判断数据是否加载完成后,渲染在页面上,不用async await和定时器的更好方法
-
ajax接收后台数据在html页面显示
-
ajax异步刷新局部页面(ajax四种请求方式)