jQuery-Ajax

jQuery.ajax

$.ajax({
    url: 'xxx.php',      
    method: 'GET',   //请求数据方式
    data: {
        name: 'Byron',
        age: 24,
        sex: 'Male'
    }                          //数据
})
  • url:请求数据的地址。
  • method:请求数据的方式。
  • data:发送到服务器的数据。

$.get

$.get({
    url: "url",
    data: data,
    success: success,
    dataType: dataType
}) // dataType:从服务器返回的预期的数据类型。默认:智能猜测(xml,json,script或html)

$.get('url).done(function(ret){
    console.log(ret)
})

$.POST

$.ajax({
  type: "POST",
  url: url,
  data: data,
  success: success,
  dataType: dataType
});

你可能感兴趣的:(jQuery-Ajax)