var POSTするデータ1 = "ああああ";
var POSTするデータ1 = "いいいい";
console.log("ajax通信開始");
$.ajax({
url: 'XXXXX.php',
type: 'POST',
dataType: 'text',
data : {
POSTするデータ名1 : POSTするデータ1,
POSTするデータ名2 : POSTするデータ2
}
})
.done(function( data, textStatus ){
console.log( "status:" + textStatus );
var responsedata = JSON.parse(data) ;
console.log(responsedata);
})
.fail(function(jqXHR, textStatus, errorThrown ){
console.log( "code:" + jqXHR.status );
console.log( "status:" + textStatus );
console.log( "errorThrown:" + errorThrown );
})
.always(function() {
console.log("ajax通信完了");
});
【備忘】ajaxでPHPにPOSTする基本形
投稿日: