$.ajax({url:"localhost:8889/server", //请求的url地址dataType:"json", //返回格式为jsonasync:true,//请求是否异步,默认为异步,这也是ajax重要特性data:{"id":"value"}, //参数值type:"GET", //请求方式beforeSend:function(){//请求前的处理},success:function(res){console.log(res);//请求成功时处理},complete:function(){//请求完成的处理},error:function(){//请求出错处理}});
$.ajax({dataType: 'jsonp',url: 'localhost:8889/server',type:'get',success: function(data){$('#name').text(data.name);}});