前端笔记

Ajax

2018-05-16  本文已影响9人  好奇男孩

Ajax

1.$.ajax
jQuery.ajax( [settings ] )
方法提供了几个常用的setting

$.ajax({
  url:"http://xx",
  type:"get",
  data:{
    username:"xiaohui",
    passworld:"123123"
  },
  dataType:"json"
    
}).done(function(result){
  console.log(result);
}).fail(function(){
  console.log('服务器错误')
})

2.$.get
jQuery.get( [settings] )

 $.get('http://api.jirengu.com/weather.php').done(function(ret){
   console.log(ret);
 })

3.$.getJSON
jQuery.getJSON( url [, data ] [, success(data, textStatus, jqXHR) ] )
使用一个HTTP GET请求从服务器加载JSON编码的数据,这是一个Ajax函数的缩写

$.getJSON('http://api.jirengu.com/weather.php').done(function(ret){
   console.log(ret);
 })
上一篇 下一篇

猜你喜欢

热点阅读