谷歌地图在IE10中根本不显示

时间:2014-04-10 07:08:22

标签: google-maps internet-explorer drupal-7

目前webpage并未在IE10下显示gmap,但所有其他浏览器都能正常显示。有人可以指导我找到可能的解决方案吗?

我试过了     META http-equiv = X-UA-兼容内容= IE = 9     和     META http-equiv = X-UA-Compatible content = IE = edge

没有成功! 我目前正在使用drupal 7作为网站和gmap模块。

感谢您的回复

1 个答案:

答案 0 :(得分:0)

我已经确定了您的错误,为什么它会发出此错误,因为您已设置此元标记 <meta http-equiv="X-UA-Compatible" content="IE=8">

根据IE10浏览器标准模式和其他浏览器版本IE8标准不支持控制台的以下方法

Console.log();
Console.info();
Console.warn();

但是,如果你可以将IE模式设置为9,它将起作用。

在IE10版本中,有4种不同的方法,其中使用Console.dir()而不是3以上。

在您的Javascript文件中出现此错误:

"SCRIPT438: Object doesn't support property or method 'warn' Bmain,adsense,geometry,zombie.js, line 70 character 35".

在这种情况下,您无法更改javascript,因为它是从Google CDN加载的。

因此,您可以将以下内容添加到HTML中,这有助于您将文档标准模式更改为IE = 9。 <meta http-equiv="X-UA-Compatible" content="IE=8">

Reff:http://msdn.microsoft.com/en-us/library/ie/jj819729(v=vs.85).aspx