地理定位编码出错

时间:2014-01-23 17:20:01

标签: javascript

这段代码有什么问题?第2和第7行显然有错误?感谢

var location = Appery ('input').val();
if (location == '') {
   alert ('Please enter a location.');
   return;
}
var map = Appery('map');
map.options['address'] = location;
map.refresh();

1 个答案:

答案 0 :(得分:1)

您不能使用名称location作为变量!

  

Window.location是只读属性,返回一个Location对象   有关文件当前位置的信息。

将其更改为其他内容:

var appery_loc = Appery('input').val();