标签: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){ } });
标签:path parameter UNC div json type XML data属性 请求
原文地址:https://www.cnblogs.com/tanjiyuan/p/11359527.html