jQuery getScript返回解析错误异常

jQuery getScript返回解析错误异常,第1张

jQuery getScript返回解析错误异常

该错误是由以下事实引起的:希望使用可以将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');});


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5615155.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存