我有类似于以下的 javascript 代码,但是当我尝试在 foo() 中使用“myVar”时,它的值是未定义的。我也尝试将变量传递给 bar() 并直接分配它,但不会通过引用传递。
function foo() {
bar();
var myVar = document.getElementById('coords').value;
// myVar should now be (40.7143528, -74.0059731)
alert(myVar); // returns blank
var request = {
location: myVar,
radius: 500,
types: [type] //previously defined
};
//Then send a search request to Google...
}
function bar() {
geocoder.geocode( {'address':address}, function(results, status) {
document.getElementById('coords').value = results[0].geometry.location;
// Let's say the location is NYC (40.7143528, -74.0059731)
alert(document.getElementById('coords').value); //returns the correct value
// however, this pops up after the pop up in function foo()
});
}
使用以下 HTML
<input type="hidden" id="coords" name="coords"/>
真正的代码是使用 Google Maps API,如果这会有所不同: