1.post請求 2.get請求 3.ajax跨站請求 在處理函數中需要加入:context.Response.AppendHeader("Access-Control-Allow-Origin", "*"); ...
1.post請求
$.ajax({ type: 'post', url: '/GetProdects.ashx', async: true,
//data: {id:'2'} 請求參數 success: function (result) { var json = JSON.parse(result)['Head']; prodectVue.prodects = json; }, error: function () { setContainer('ERROR!'); } });
2.get請求
$.ajax({ type: 'get', url: '/DeleteProdect.ashx?id='+2, async: true, success: function (result) { //alert(123) if (result == '1') { alert('刪除成功'); showProdect(); } else alert('系統繁忙'); }, error: function () { setContainer('ERROR!'); } });
3.ajax跨站請求
$.ajax({ type: 'get', url: 'http://功能變數名稱/DeleteProdect.ashx?id='+id, async: true, success: function (result) { //alert(123) if (result == '1') { alert('刪除成功'); showProdect(); } else alert('系統繁忙'); }, error: function () { setContainer('ERROR!'); } });
在處理函數中需要加入:context.Response.AppendHeader("Access-Control-Allow-Origin", "*");