ajax技术_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > ajax技术

ajax技术

 2017/10/2 9:43:06  fight139  程序员俱乐部  我要评论(0)
  • 摘要:1.post请求$.ajax({type:'post',url:'/GetProdects.ashx',async:true,//data:{id:'2'}请求参数success:function(result){varjson=JSON.parse(result)['Head'];prodectVue.prodects=json;},error:function(){setContainer('ERROR!');}});2.get请求$.ajax({type:'get',url
  • 标签:Ajax Ajax技术 技术

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", "*");

 

发表评论
用户名: 匿名