非同期通信で色々調べていたら出てきたやつ
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$.ajax({ url:"http://xxxx/a.php", type:"GET", dataType:"json", success: function(data){ console.log("OK"); }, error: function(XMLHttpRequest, textStatus, errorThrown) { console.log("ERROR"); }, complate: function(data){ consolo.log("END"); } }); |
上記これはjQueryのバージョンが1.5以前の古いタイプ
新しいタイプは下記
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$.ajax({ url:"http://xxxx/b.php", type:"GET", dataType:"json", }) .done(function(data){ console.log("OK"); }) .fail(function(jqXHR, textStatus, errorThrown){ console.log("ERROR"); }) .always(function(){ console.log("END"); }); |
メモメモ