var point1;
geocoder.getLatLng("sheffield", function(point1)
{
if (!point1) {
//alert("can't parse" + address);
} else {
//alert(point);
}
}
);
请问这样的话,point1是上面定义的point1么?应该怎么定义全局变量啊?谢谢
------解决方案--------------------
和Java的 一样.把外边的屏蔽了
------解决方案--------------------
这里的point1是不同的2个point1
------解决方案--------------------
方法外部定义的为全局变量。若形参名与全局变量名相同,方法体内则应用型参的值,记住就近原则就行。如果想用全局变量的值,你把形参的名改了就行。
------解决方案--------------------
- JScript code
var gpoint; //加一个全局变量function showAddress(address) { if (geocoder) { geocoder.getLatLng(address, function(point) { if (!point) { //alert("can't parse" + address); } else { //alert(point); var marker = createTabbedMarker(point); map.addOverlay(marker); gpoint = point; //赋值给 gpoint } } ); }}