我试图将 ajax 响应存储到 Post php 变量,然后在同一页面上回显它,但遗憾的是,它返回“注意:未定义的索引”
我认为它与 ajax 的成功部分有关。你能帮我纠正它吗?
提前致谢:)
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Title</title>
</head>
<form action="" method="post">
<input type="submit" name="ido" value="Click" /></td>
</form>
<script>
var x=document.getElementById("log");
function getLocation()
{
if (navigator.geolocation)
{
navigator.geolocation.getCurrentPosition(showPosition);
}
else{x.innerHTML="GPS szolgáltatás nem müködik ezen a böngészőn, kérlek értesítsd a rendszergazdát!";}
}
function showPosition(position)
{
navigator.geolocation.getCurrentPosition(showPosition);
var latitude = position.coords.latitude;
var longitude = position.coords.longitude;
$.ajax({
url: "test.php",
type: 'POST', //I want a type as POST
data: {'name' : latitude },
success: function(response) {
alert(response);
}
});
}
</script>
<?php
if(isset($_POST["ido"])){
echo "<script>getLocation();</script>";
$name=$_POST["name"];
print_r($_POST);
}
?>
</html>