这段代码有什么问题?第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();
答案 0 :(得分:1)
您不能使用名称location
作为变量!
Window.location是只读属性,返回一个Location对象 有关文件当前位置的信息。
将其更改为其他内容:
var appery_loc = Appery('input').val();