在 IE 8 中加载页面后添加 Google +1 按钮
我现在正在开发一个网站,需要先构建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是解决方案,它在 IE7/8 中都适用:
看来使用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:
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