Can't load Google Cloud Endpoints on Internet Explorer 10

后端 未结 3 1542
独厮守ぢ
独厮守ぢ 2021-02-13 15:49

I\'m working on a web site that is using the Google JavaScript Client Library to load some APIs that are exposed via Google Cloud Endpoints. The endpoints were developed in Pyth

3条回答
  •  臣服心动
    2021-02-13 16:29

    I have had similar issues with loading Google APIs for the Google Earth plugin in IE 10 and 11. The only resolution we have found (Other than Google fixing this) is to force IE 10 to run in IE 9 mode. Every version of IE includes the rendering engines from the previous major versions. You can test this manualy by going into the developer tools in IE and set which IE rendering engine you want to use.

    You can force IE to render in a specific mode by adding this meta tag in your html file:

    
    
    
    
    

    It HAS to be the first meta tag in the HTML file, or it will be ignored by IE. This meta tag will be ignored by other browsers. This will however make your entire page render with the IE 9 engine so you do lose cpabilities present in IE 10 and 11. If you need IE 10 functionality this solution will not work for you. If IE 9 compatibility is part of your requirements, this may be a work around for this problem

    This link has more info on the IE compatibility modes

提交回复
热议问题