17
14

More than 5 years have passed since last update.

【jQuery】$.ajax()

Last updated at Posted at 2015-01-24
基本形
$.ajax({
  url: 'http://user-domain/hoge.php',
  type: 'POST',
  data: {
    id: 1,
    mode: 'hoge'
  },
  dataType: 'html'
}).done(function( data, textStatus, jqXHR ) {
  //成功
}).fail(function( jqXHR, textStatus, errorThrown) {
  //失敗
}).always(function( jqXHR, textStatus) {
  //通信完了
});

getメソッドでdataを設定するとクエリストリングになる。

$.ajax({
    type: 'GET',
    url: 'http://user-domain/hoge.php',
    data: {
        id: 1,
        mode: 'hoge',
        type: 'entry'
    },

//=>http://user-domain/hoge.php?id=1&mode=hoge&type=entry

参考:jQuery.ajax()のまとめ

17
14
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
17
14