だから私は私のjavascriptファイルにこの関数を持っています:
function UpdateThisCourseHistory(){
var ajax= new Ajax.Request("runNeededQueries.php",
{
method: "POST",
parameters: {database: "history", action:"update"},
onSuccess: function(){alert("This Course History Entry Has Been Updated");},
onFailure: function(){alert("Could Not Find The Entry With The Specified Primary Key");}
}
);
}
これが私のphpファイルだとします
<?php
header('HTTP/1.0 400 Bad Request');
?>
これにより onFailure メソッドが実行されますか?