我有以下代码:
<script type = "text/javascript">
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(geofields);
}
}
function geofields() {
if (document.getElementById('starthere').checked == 1) {
document.getElementById('start').value = position.coords.latitude + " " + position.coords.longitude;
} else {
document.getElementById('start').value = '';
}
}
</script>
我想function geofields(){
显示 GeoLocation,将 'start' 元素的值更改为坐标(从 GetLocation() 脚本接收),但它不适用于上面的代码。有什么建议么?