该错误是由以下事实引起的:希望使用可以将Google Maps API加载到头部
<scriptsrc="http://maps.google.com/maps/api/js?sensor=true"></script>。
如果您由于某种原因不能做到这一点,那么仍然有希望。Google Maps
API不起作用,因为它用于
document.write在页面中注入依赖项。要使代码正常工作,您可以覆盖本机
document.write方法。
演示:http://jsfiddle.net/ZmtMr/
var doc_write = document.write; // Remember original method;document.write = function(s) {$(s).appendTo('body')};$.getscript('http://maps.google.com/maps/api/js?sensor=true').done(function() { $.getscript('../js/gomap.js').done(function() { alert('gomap loaded'); document.write = doc_write; // Restore method }).fail(function(jqxhr, settings, exception) { alert(exception); // this gets shown document.write = doc_write; // Restore method });}).fail(function() { alert('failed to load google maps');});
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)