差异化输出,因为错误

时间:2013-12-28 01:22:32

标签: javascript html5 google-maps-api-3

我遇到的问题与我有所不同,因为我无法找到解决方案。它可以在我的localost上运行,没有任何问题和错误消息,但是一旦我将它上传到此网站空间http://chris1904.bplaced.net/index.html,我收到错误消息

  

未捕获的SyntaxError:意外的标记ILLEGAL

这是错误指向的行

google.maps.event.addListener(map, 'click', function(event) {

您可以将其与此网站进行比较http://chris1904.webege.com/index.html 它是完全相同的来源,但它的解释方式不同。

我不喜欢语法错误,即使它们可能被正确解释,但我该如何修复此错误?谢谢你的帮助!

1 个答案:

答案 0 :(得分:0)

这里有一个javascript语法错误:

var marker = new google.maps.Marker({
                    position: myLatLng,
                    map: map,
                    icon: image,
                    title: compAddressArr[i],
                });

最后一项title: compAddressArr[i],后面的尾随逗号将导致IE出错。

同样的事情再次向下:

var marker = new google.maps.Marker({
                position: location,
                map: map,
                icon: image,
                title: completeAddress,
            });