我正在网站上工作,我需要在将按钮放在页面上之前构建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()方法,但仍然没有运气。
答案 0 :(得分:4)
以下是解决方案,它适用于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