美文网首页
Get the Geolocation data

Get the Geolocation data

作者: 成江 | 来源:发表于2018-03-16 10:55 被阅读9次
<script>
  // Only change code below this line.
  
  if (navigator.geolocation) {
  navigator.geolocation.getCurrentPosition(function(position) {
    $("#data").html("latitude: " + position.coords.latitude + "<br>longitude: " + position.coords.longitude);
  });
}
  
  // Only change code above this line.
</script>
<div id = "data">
  <h4>You are here:</h4>
  
</div>

相关文章

网友评论

      本文标题:Get the Geolocation data

      本文链接:https://www.haomeiwen.com/subject/anelqftx.html