动态加载 Google API
我试图在点击时加载 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
本身,google.load 在页面加载时加载(不确定为什么它会删除所有内容)。但是,要动态加载库,您需要将带有回调选项的对象传递给 load 的第三个参数:
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:
http://code.google.com/apis/loader/#Dynamic