码迷,mamicode.com
首页 > Web开发 > 详细

ajax请求处理概要

时间:2019-08-19 00:15:24      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:path   parameter   UNC   div   json   type   XML   data属性   请求   

/**
 *不关心参数传递与参数返回的形式。
 */
url = ctxPath + ‘/ccb/xxx ‘;
$.get(url);
$.post(url);
/**
 * 常见形式。
 */
var url = "";
$.ajax({
        url:url,                           //ajax  URL地址
        type:"",                           //ajax  提交方式 post、get……
        dataType:"",                       //传递类型 xml、json……
        async:true,                        //ajax跨域参数
        data:{  
            data:"parameter"                               
            //若无参数传递,data属性结构要有,如果有参数传递,参数要与后端接收属性相对应
        },
        success:function(data){
            console.log(data);//在client控制台输出
        },
        error:function(data){
        }
});

 

ajax请求处理概要

标签:path   parameter   UNC   div   json   type   XML   data属性   请求   

原文地址:https://www.cnblogs.com/tanjiyuan/p/11359527.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!