在 IE 8 中加载页面后添加 Google +1 按钮

发布于 2024-11-27 07:00:55 字数 473 浏览 2 评论 0原文

我现在正在开发一个网站,需要先构建一个 URL,然后再将按钮放在页面上。它的工作原理如下:

var googleplus = $("<g:plusone size='tall' href='http://google.com'></g:plusone>");
$("#container").append(googleplus);
gapi.plusone.go();

在我的脑海中,有这样的内容:

<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>

这适用于 Firefox/Chrome/IE 9,但不适用于 IE 8。我不知道还能做什么才能使其工作。我也尝试过gapi.plusone.render()方法,但仍然没有运气。

I'm working on a site right now where I need to build a URL before putting the button on the page. Here's how it works:

var googleplus = $("<g:plusone size='tall' href='http://google.com'></g:plusone>");
$("#container").append(googleplus);
gapi.plusone.go();

And in the head I have this:

<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>

This works in Firefox/Chrome/IE 9, but not IE 8. I'm at a loss as to what else to do to make it work. I tried with the gapi.plusone.render() method as well, still no luck.

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

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

发布评论

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

评论(1

请持续率性 2024-12-04 07:00:55

这是解决方案,它在 IE7/8 中都适用:

var gPlusOne = document.createElement('g:plusone');
gPlusOne.setAttribute("size", "tall");
gPlusOne.setAttribute("href", "http://google.com");
container.appendChild(gPlusOne);

看来使用innerHTML将 元素插入页面不起作用在 IE7/8 中,直接创建 g:plusone 元素,如下所示: document.createElement('g:plusone').
查看更多信息:http://www.google.com/support/论坛/p/Webmasters/thread?tid=3d63228b915dab32

Here is the solution, it works for me in both IE7/8:

var gPlusOne = document.createElement('g:plusone');
gPlusOne.setAttribute("size", "tall");
gPlusOne.setAttribute("href", "http://google.com");
container.appendChild(gPlusOne);

it appears that using innerHTML to insert a <g:plusone></g:plusone> element into a page does not work in IE7/8, Create the g:plusone element directly like this: document.createElement('g:plusone').
see more: http://www.google.com/support/forum/p/Webmasters/thread?tid=3d63228b915dab32

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