动态加载 Google API

发布于 2024-12-10 23:55:18 字数 445 浏览 0 评论 0原文

我试图在点击时加载 Google 的 Api,但似乎每当我这样做时,内容都会被隐藏。

我首先加载谷歌的 Api:

然后单击我加载一个 Api:

$(".test").click(function () {
        google.load("language", "1");
    });

...并且内容被隐藏。

在这里查看: http://jsfiddle.net/hnr6v/

那么,我该如何加载Google 的 API 没有隐藏内容?还有其他方法吗?

I'm trying to load Google's Api on click but it seems whenever I do so, the content gets hidden.

I firstly load the google's Api: <script src="http://www.google.com/jsapi"></script>

Then on click I load an Api:

$(".test").click(function () {
        google.load("language", "1");
    });

...And the content gets hidden.

Check it out here: http://jsfiddle.net/hnr6v/

So, how can I load Google's API's without the content to get hidden? Is there any another way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

这个俗人 2024-12-17 23:55:18

本身,google.load 在页面加载时加载(不确定为什么它会删除所有内容)。但是,要动态加载库,您需要将带有回调选项的对象传递给 load 的第三个参数:

google.load("language", "1", {"callback" : languageFileLoaded});

function languageFileLoaded()
{
    // do what you need here
}

http://code.google.com/apis/loader/#Dynamic

natively, google.load loads on page load (not sure why it would remove all content). However, to dynamically load a library, you need to pass an object with a callback option to the third param of load:

google.load("language", "1", {"callback" : languageFileLoaded});

function languageFileLoaded()
{
    // do what you need here
}

http://code.google.com/apis/loader/#Dynamic

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