最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Manually render dynamically generated Google 'plus one' button - Stack Overflow

programmeradmin2浏览0评论

Here's the scene:

  • The webpage doesn't have a google+ button.
  • User clicks a button.
  • AJAX request is sent which loads some text and the google+ button (<g:plusone href=""></g:plusone>) into a div.
  • I can see when I look at the code that it is there, but it is not rendering.

I've heard that this might be useful: gapi.plusone.go();

But I'm not sure.

Any ideas?

Thanks

Here's the scene:

  • The webpage doesn't have a google+ button.
  • User clicks a button.
  • AJAX request is sent which loads some text and the google+ button (<g:plusone href="http://www.website."></g:plusone>) into a div.
  • I can see when I look at the code that it is there, but it is not rendering.

I've heard that this might be useful: gapi.plusone.go();

But I'm not sure.

Any ideas?

Thanks

Share Improve this question edited May 10, 2012 at 9:39 asked May 10, 2012 at 9:34 user993683user993683 1
  • 2 Since you already have the g+ div in place - all you have to do is invoke the render by calling gapi.plusone.go(). It is better to pass it the id the of the container div. – Ujjwal Singh Commented Jan 22, 2013 at 22:32
Add a ment  | 

1 Answer 1

Reset to default 10

You're on the right track. gapi.plusone.go() is one way to explicitly render the +1 button. Here's a code snippet from the official docs that illustrates another method using gapi.plusone.render().

<html>
  <head>
    <title>+1 Demo: Explicit render</title>
    <link rel="canonical" href="http://www.example." />
    <script type="text/javascript" src="https://apis.google./js/plusone.js">
      {"parsetags": "explicit"}
    </script>
    <script type="text/javascript">
      function renderPlusone() {
        gapi.plusone.render("plusone-div");
      }
    </script>
  </head>
  <body>
    <a href="#" onClick="renderPlusone();">Render the +1 button</a>
    <div id="plusone-div"></div>
  </body>
</html>

The JavaScript API is further documented elsewhere on the previously linked page.

发布评论

评论列表(0)

  1. 暂无评论