WebForm 頁面ajax 請求後臺頁面 方法
阿新 • • 發佈:2018-12-31
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 { } }