异步加载 Google Chart API
是否有可能像 Google Maps API 一样异步加载 Google Chart API?我尝试了两种不同的方法:
$.getJSON('http://www.google.com/jsapi');
但
$.getScript('http://www.google.com/jsapi');
都不起作用。 有什么建议吗?
Is there a possibility to load Google Chart API asynchronously like Google Maps API? I've tried out two different things:
$.getJSON('http://www.google.com/jsapi');
and
$.getScript('http://www.google.com/jsapi');
both are not working.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于同源策略限制,您无法对远程域执行 AJAX 请求,这解释了为什么
getJSON
不起作用。就getScript
而言,有 应该不会有任何问题。Due to same origin policy restrictions you cannot perform AJAX requests to distant domains which explains why
getJSON
doesn't work. As far asgetScript
is concerned there shouldn't be any problems.