<script>
var lat ;
if(true) {
navigator.geolocation.getCurrentPosition(GetLocation);
function GetLocation(location) {
var lat = location.coords.latitude;
}
};
alert(lat);
</script>
现在我得到 [object HTMLInputElement] ,我在这里做错了吗?