真的希望有人可以帮助我解决这个问题,我似乎有这个 HTML5/Jquery 组合完美地工作,除了它需要刷新才能工作!
基本上,我使用 HTML5 地理定位将用户的纬度/经度存储在会话中,然后用它做一些其他的事情。之后我用它做什么不是问题,它实际上存储了让我悲伤的纬度/经度。
我正在使用的代码如下。我已经评论了我发现问题所在的地方。
任何帮助表示赞赏!
<?php
session_start();
$url = $_SERVER["REQUEST_URI"];
?>
<script src="modernizr.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script>
function getLocation()
{
if (navigator.geolocation)
{
navigator.geolocation.getCurrentPosition(showPosition);
}
}
function showPosition(position)
{
localStorage.lat = position.coords.latitude;
localStorage.lon = position.coords.longitude;
}
$(document).ready(function(){
if (Modernizr.geolocation) {
getLocation();
//If I run getLocation() again here it works first time
//A bit of debugging shows that this is where the lat/long values are being lost
$.get("savetosession.php", {lat: localStorage.lat, lon: localStorage.lon}, function(result){
$.get("dothis.php", {url:<?php echo $url; ?>}, function(result){
$("div").html(result);
});
});
}
});
</script>
<div></div>