异步加载 Google Chart API

发布于 2024-09-29 13:03:18 字数 237 浏览 2 评论 0原文

是否有可能像 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

相思碎 2024-10-06 13:03:18

由于同源策略限制,您无法对远程域执行 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 as getScript is concerned there shouldn't be any problems.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文