Ajaxメモ2
jQuery.postメソッドのブラウザ毎の違いについて(つうかIEだけ動きが違う)
○
function my_func(data) {
alert(data+"ここだよ");
}
function test(){
document.getElementById("message_neko").innerHTML = "【設定中】";
jQuery.post('isExecute',{'param1':'★★★','param2':'■■■'}, my_func);
}
×
var hoge = jQuery.post('isExecute',{'param1':'★★★','param2':'■■■'}, my_func);
alert(hoge.responseText);
その他
getは初回のみサーバ通信を行い、2回目以降はブラウザ内でキャッシュする。
postは毎回サーバ通信を行う。