谷歌+不适用于 jquery

发布于 2024-12-28 16:50:12 字数 425 浏览 1 评论 0原文

我试图在一个已经有 jquery 的网站中实现 google+,在 firebug 中我收到消息:

“window.googleapisv0 未定义”。

我是这样实现的,

<div id="plusOne-root">
    <script src="http://apis.google.com/js/plusone.js" type="text/javascript"></script>
    <g:plusone size="medium"></g:plusone>
</div>

我也在谷歌上搜索了这个问题,更多的人遇到这个问题,但在他们的主题中仍然没有解决方案。我希望任何人都可以帮助我。

Im trying to implement google+ in a website that already has jquery in it, in firebug i get the message:

"window.googleapisv0 is undefined".

I've implemented it like this

<div id="plusOne-root">
    <script src="http://apis.google.com/js/plusone.js" type="text/javascript"></script>
    <g:plusone size="medium"></g:plusone>
</div>

I also searched for the problem on google, more people experience this problem, but in their topics there's still no solution. I hope anyone can help me out.

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

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

发布评论

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

评论(1

冷情 2025-01-04 16:50:12

这并不能解决根本原因,但声明此全局可能会阻止抛出错误。

window.googleapisv0 = ( 'undefined' !== typeof window.googleapisv0 ) ? window.googleapisv0 : {};

This does not resolve the root cause but declaring this global would likely prevent the error from being thrown.

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