Google Plus One Button - How to add a callback?

无人久伴 提交于 2019-12-30 06:12:12

问题


I have the google+ button being rendered on my site as follows:

In the JS:

    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);

In the html:

<g:plusone size="medium" href="https://site.com"></g:plusone>

How can I add a callback to this to detect when the user has clicked? I see the docs here: https://developers.google.com/+/plugins/+1button/#jsapi not seeing how to implement with the current render. Thanks


回答1:


You can add a JavaScript callback using a callback attribute to your +1 button markup. Supply the name of a function that resides in the global namespace. It will be called when a user clicks on the +1 button.

Here's what your code might look like:

<script>

   function myCallback(jsonParam) {

      alert("URL: " + jsonParam.href + " state: " + jsonParam.state);

   }

</script>

<g:plusone size="medium" href="https://site.com" callback="myCallback"></g:plusone>

You can learn more about this attribute in the tag parameters section of the documentation.




回答2:


In addition to Jenny's answer you can also use a HTML5-valid +1 tag by setting the class attribute to g-plusone, and prefixing any button attributes with data- such as callback

<div class="g-plusone" data-callback="myCallback" ></div>

From https://developers.google.com/+/web/+1button/



来源:https://stackoverflow.com/questions/11107221/google-plus-one-button-how-to-add-a-callback

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!