我有一个简单的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
并将其放入我的数据库中?
我希望有人可以帮助我。
答案 0 :(得分:1)
你可以像这样做一个ajax帖子:
$.post('recv.php', position.coords)
然后将php放入数据库中。