gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 08:00:36 26 4
gpt4 key购买 nike

我现在正在一个网站上工作,我需要在将按钮放在页面上之前构建一个 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() 方法,但仍然没有运气。

最佳答案

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

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

似乎使用innerHTML 插入一个 <g:plusone></g:plusone>元素进入页面在 IE7/8 中不起作用,直接像这样创建 g:plusone 元素: document.createElement('g:plusone').查看更多: http://www.google.com/support/forum/p/Webmasters/thread?tid=3d63228b915dab32

关于internet-explorer-8 - 在 IE 8 中加载页面后添加 Google +1 按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6877583/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com