我正在尝试在jQuery中返回一个值并替换div的文本。 我的函数中的 console.log() 记录了正确的值,但函数不会向我的变量 (d) 返回任何内容,该变量 (d) 应该替换div 中的文本。
这是我的代码示例:
var d = getLatLong('Bahnhofplatz, 8000 Zürich');
$('#divResult').replaceWith(d);
//$("#divResult").replaceWith("asdsadsadsad");
function getLatLong(address) {
var geocoder = new google.maps.Geocoder();
geocoder.geocode({
address : address,
region: 'no'
},
function(results, status) {
if (status.toLowerCase() == 'ok') {
var coords = new google.maps.LatLng(
results[0]['geometry']['location'].lat(),
results[0]['geometry']['location'].lng()
);
var latlng = 'Latitute: ' + coords.lat() + ' Longitude: ' + coords.lng();
console.log(latlng);
return latlng;
}
}
);
};
这是一个"工作"的jsFiddle链接:
http://jsfiddle.net/u3rgocms/1/
感谢您的帮助。
这将不起作用,因为您在地理编码器范围内调用的内部函数中返回值。你可以把替换函数放在你返回字符串的地方。请记住,结果函数 if 地理编码调用将被异步调用。这是作为解锁功能实现的,因此您的主要业务 logik 不会等到响应准备就绪。
感谢您的帮助。
我的工作代码是:
getLatLong('Bahnhofplatz, 8000 Zürich', function(x){
$('#divResult').replaceWith(x[0]);
});
//$("#divResult").replaceWith("asdsadsadsad");
function getLatLong(address, callback) {
var geocoder = new google.maps.Geocoder();
geocoder.geocode({
address : address,
region: 'no'
},
function(results, status) {
if (status.toLowerCase() == 'ok') {
var coords = new google.maps.LatLng(
results[0]['geometry']['location'].lat(),
results[0]['geometry']['location'].lng()
);
var latlng = [coords.lat() , coords.lng()];
callback(latlng);
}
}
);
};