HTML5地理位置保存到数据库

时间:2012-12-21 09:46:37

标签: jquery html5 geolocation

我有一个简单的HTML5 GeoLocation脚本。

<script>
var x=document.getElementById("demo");
function getLocation()
{
    if (navigator.geolocation)
    {
        navigator.geolocation.getCurrentPosition(showPosition);
    }
    else
    {
        x.innerHTML="Geolocation is not supported by this browser.";
    }
}

function showPosition(position)
{
    x.innerHTML="Latitude: " + position.coords.latitude + 
        "<br>Longitude: " + position.coords.longitude;  
}
</script>

问题是如何才能获得position.coords.latitude&amp; position.coords.longitude并将其放入我的数据库中?

我希望有人可以帮助我。

1 个答案:

答案 0 :(得分:1)

你可以像这样做一个ajax帖子:

$.post('recv.php', position.coords)

然后将php放入数据库中。