URL の HTML ファイルがありますlocalhost/dir1/dir2/file.html
。このファイルでは、jquery を介してサーバーにデータを送信します。
$('#element').live("change", function(){
$.ajax({
url: "localhost/dir1/dir3/file.php",
type: "POST",
data: { esp: $(this).val() },
success: function(result){
$("#element2").html(result);
}
})
jquery send the data tolocalhost/dir1/dir2/localhost/dir1/dir3/file.php
が原因でエラーが発生しましたが、データを に送信する必要がありますlocalhost/dir1/dir3/file.php
。これどうやってするの?