LoginSignup
15

More than 5 years have passed since last update.

posted at

updated at

【jQuery】$.ajax()

基本形
$.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()のまとめ

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
What you can do with signing up
15